代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/150226/12303919
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/150226/12303952
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/251835/12317672
m scmapopt.m
function options = scmapopt(varargin)
%SCMAPOPT Set options for SC maps.
% options = SCMAPOPT('NAME1',VALUE1,'NAME2',VALUE2,...) creates an
% options structure in which the named properties hav
www.eeworm.com/read/149739/12352665
m plotgtm.m
%PLOTGTM Plot a trained GTM mapping in 1D, 2D or 3D
%
% H = PLOTGTM (W)
%
% INPUT
% W Trained GTM mapping
%
% OUTPUT
% H Graphics handles
%
% DESCRIPTION
% Creates a plot of the
www.eeworm.com/read/149739/12352734
m gtm.m
%GTM Fit a Generative Topographic Mapping using the
% expectation-maximisation algorithm.
%
% [W,L] = GTM (A,K,M,MAPTYPE,REG,EPS,MAXITER)
%
% INPUT
% A Dataset or double matrix
% K
www.eeworm.com/read/149739/12353943
m plotdg.m
%PLOTDG Plot dendrogram
%
% PLOTDG(DENDROGRAM,K)
%
% INPUT
% DENDROGRAM Dendrogram
% K Number of clusters
%
% OUTPUT
%
% DESCRIPTION
% Plots a dendrogram as generated by HCLUST. If th
www.eeworm.com/read/250634/12395345
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/250634/12395369
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/250350/12412182
cpp femmviewview.cpp
// femmviewView.cpp : implementation of the CFemmviewView class
//
#include "stdafx.h"
#include
#include
#include "femmview.h"
#include "problem.h"
#include "xyplot.h"
#
www.eeworm.com/read/336521/12439751
m sprintsi.m
function s=sprintsi(x,d,w)
%SPRINTSI Print X with SI multiplier S=(X,D,W)
% D is number of decimal places (+ve) or significant digits (-ve) [default=-3]
% |W| is total width including multiplier
%