⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 demoxotm.m

📁 这是用matlab编写的支持向量机的函数工具箱
💻 M
字号:
function demoxotM(x,o,t,r,S,movieS,memory,verbose)# usage # x is a M * N matrix where M is the dimension of the space# and N is the number of data points.# o is a N vector# so is t# r is a vector of length M# do a demo using inputs x, etc.  if (nargin != 6 && nargin != 7 && nargin != 8)    usage ("demoxot(x,o,t,r,S,movieS[,memory[,verbose]])");  endif  if (nargin != 7  && nargin != 8)	memory = 0.8 ;   endif  if ( nargin != 8)	verbose = 1 ;   endifglobal jitter ;# jitter = 1e-4 ;showdataalone = 0 ;s=size(x); X=s(2);# S=10;                     # number of samples# movieS=3;                     # number of samplesstyle="@13";lstyle  = "-@63" ; # style for line samplesplstyle = "-@53" ; # style for line samples, posteriormstyle = "-4" ; # style for mean #  initgnu();			# set up graphics done elsewhere## Make covariance matrix#	if ( verbose >= 1 ) 		C = covM( x, x , r , jitter )		input("press return");	else 		C = covM( x, x , r , jitter ) ;	endifCIM ; # initialize one random sample and do a moviev=randn(size(x))*M ;# Make S samples and show them - from priorv=randn(S,X)*M ;  splot ( x,v,lstyle)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -