代码搜索:sprintf

找到约 7,065 项符合「sprintf」的源代码

代码结果 7,065
www.eeworm.com/read/147186/12578987

m~ bipartitematchingdemoplot.m~

function optimalMatchingDemoPlot(sources, detections, a) hold on p1 = size(sources,2); p2 = size(detections,2); for i=1:p1 text(sources(1,i), sources(2,i), sprintf('s%d', i)); end for i=1:p2 text
www.eeworm.com/read/147186/12579141

m bipartitematchingdemoplot.m

function bipartiteMatchingDemoPlot(sources, detections, a) hold on p1 = size(sources,2); p2 = size(detections,2); for i=1:p1 h=text(sources(1,i), sources(2,i), sprintf('s%d', i)); set(h, 'color',
www.eeworm.com/read/334675/12580944

m abnet.m

function [w,win,cwin,D] = abnet(ag,eps,comp,alfa,beta,pc,pm), % % Ph.D. Thesis % Leandro Nunes de Castro % June, 1999 % Pattern Recognition in the Immune System using a Growing SOM % Bipolar S
www.eeworm.com/read/334675/12580967

m ainet.m

function [M,D] = ainet(Ag,ts,n,N,gen,qi,tp) % % Ph.D. Thesis % Leandro Nunes de Castro % February, 2000 % Artificial Immune Network (aiNet) - Description in aiNet.doc % Data normalization over
www.eeworm.com/read/147020/12593684

cpp func.cpp

#include "stdafx.h" #include #include #include #include #include #include #include #include "gw.h" #include "fu
www.eeworm.com/read/248038/12606852

cpp programaview.cpp

// ProgramaView.cpp : implementation of the CProgramaView class // #include "stdafx.h" #include "Programa.h" #include "ProgramaDoc.h" #include "ProgramaView.h" #ifdef _DEBUG #define new D
www.eeworm.com/read/247651/12637918

m sor.m

%Successive Over Relaxation迭代程序 function [x,sp]=sor(a,b,n,x1,w) %误差 e=ones(n,1); %迭代的解向量 x2=zeros(n,1); %迭代的次数 k=0; %当误差没有满足要求时继续迭代 while norm(e,2)>1e-6 %每隔5步显示迭代结果 if (rem(k,5)==0)
www.eeworm.com/read/247651/12637961

m jac.m

%Jacobian迭代程序 function [x,sp]=jac(a,b,n,x1) %误差 e=ones(n,1); %迭代的解向量 x2=zeros(n,1); %迭代的次数 k=0; %当误差没有满足要求时继续迭代 while norm(e,2)>1e-6 %每隔5步显示迭代结果 if (rem(k,5)==0) str=sprintf('X
www.eeworm.com/read/146520/12641059

m eigs2.m

function varargout = eigs2(varargin) % % Slightly modified version from matlab eigs, Timothee Cour, 2004 % % EIGS Find a few eigenvalues and eigenvectors of a matrix using ARPACK. % D = EIG
www.eeworm.com/read/247565/12642019

c devname.c

/* * Copyright 1998-2002 by Albert Cahalan; all rights resered. * This file may be used subject to the terms and conditions of the * GNU Library General Public License Version 2, or any la