代码搜索:kernel
找到约 10,000 项符合「kernel」的源代码
代码结果 10,000
www.eeworm.com/read/113576/15453037
m svmval.m
function [y,y1,y2]=svmval(x,xsup,w,b,kernel,kerneloption,span,framematrix,vector,dual)
% USAGE
% [y,y1,y2]=svmval(x,xsup,w,b,kernel,kerneloption,span,framematrix,vector,dual)
%
% svmval computes th
www.eeworm.com/read/113576/15453042
m svmoneclassval.m
function ypred= svmoneclassval(x,xsup,alpha,rho,kernel,kerneloption);
K=normalizekernel(x,kernel,kerneloption,xsup);
ypred=K*alpha+rho;
www.eeworm.com/read/113576/15453068
m svmkernel.m
function [K,option]=svmkernel(x,kernel,kerneloption,xsup,framematrix,vector,dual);
% Usage K=svkernel(x,kernel,kerneloption,xsup,frame,vector,dual);
%
% Returns the scalar product of the vectors
www.eeworm.com/read/113576/15453071
m svmkernelold.m
function K=svmkernel(x,kernel,kerneloption,xsup,framematrix,vector,dual,quadpen);
% Usage K=svkernel(x,kernel,kerneloption,xsup,frame,vector,dual,quadpen);
%
% Returns the scalar product of the
www.eeworm.com/read/113576/15453075
m svmclass.m
function [xsup,w,d,pos,timeps,alpha,obj]=svmclass(x,y,c,lambda,kernel,kerneloption,verbose,span, alphainit)
% USAGE [xsup,w,b,pos,timeps,alpha]=svmclass(x,y,c,lambda,kernel,kerneloption,verbose,span,
www.eeworm.com/read/113576/15453089
m r2smallestsphere.m
function [beta,r2,pos]= r2smallestsphere(xapp,kernel,kerneloption,Cpenalization)
% usage
% [beta,r2,pos]= r2smallestsphere(xapp,kernel,kerneloption,Cpenalization)
%--------------------------
www.eeworm.com/read/113576/15453098
m svmroccs.m
function [xsup,w,w0,pos,timeps,alpha,matriceind]=svmrocCS(x,y,C,kppv,margin,lambda,kernel,kerneloption,verbose,span)
% USAGE
%
% [xsup,w,w0,pos,timeps,alpha,matriceind]=svmrocCS(x,y,C,kppv,margin,la
www.eeworm.com/read/113576/15453101
m svmroc.m
function [xsup,w,w0,pos,timeps,alpha,matriceind]=svmroc(x,y,C,kppv,margin,lambda,kernel,kerneloption,verbose,span,qpsize)
% USAGE
%
% [xsup,w,w0,pos,timeps,alpha,matriceind]=svmroc(x,y,C,kppv,margin
www.eeworm.com/read/113576/15453117
m svmclassl2.m
function [xsup,w,d,pos,timeps,alpha,obj]=svmclass(x,y,c,lambda,kernel,kerneloption,verbose,span,alphainit)
% USAGE [xsup,w,b,pos,timeps,alpha]=svmclass(x,y,c,lambda,kernel,kerneloption,verbose,span)
%
www.eeworm.com/read/111947/15499707
h memory.h
/*
* NOTE!!! memcpy(dest,src,n) assumes ds=es=normal data segment. This
* goes for all kernel functions (ds=es=kernel space, fs=local data,
* gs=null), as well as for all well-behaving user prog