代码搜索:kernel
找到约 10,000 项符合「kernel」的源代码
代码结果 10,000
www.eeworm.com/read/154482/11951325
directories
* CVS
The CVS directories. Do not touch these! You should not see them unless
you got this package through CVS.
* RPM
Supporting files for RPM generation.
* doc
Several documentation files.
*
www.eeworm.com/read/343072/11977608
bas driveinfo.bas
Attribute VB_Name = "DriveInfo"
Public Declare Function GetVolumeInformation Lib "kernel32" Alias "GetVolumeInformationA" (ByVal lpRootPathName As String, ByVal lpVolumeNameBuffer As String, ByVal nV
www.eeworm.com/read/342879/11994703
readme-linux-patch
To build YAFFS in the Linux kernel tree you need to run the patch-ker.sh
script from the yaffs source directory, giving your choice as to whether
you wish to copy (c) or link (l) the code and the path
www.eeworm.com/read/256398/12001680
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/256398/12001697
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/256398/12001789
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/256398/12001812
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,obj]=svmclass(x,y,c,lambda,kernel,kerneloption,verbose,sp
www.eeworm.com/read/256398/12001833
m testwaveletkernel.m
%
% this is a script for testing and looking into wavelet kernel
% and different decompositions.
%
%
clear all
close all
% this is the data
N=50;
x=linspace(0,1,N)';
% these are the
www.eeworm.com/read/256398/12001840
m createmultilevelkernel.m
function [K,Kt]=CreateMultiLevelKernel(xapp,xtest,kerneloption,level)
% USAGE
%
% [K,Kt]=CreateMultiLevelKernel(xapp,xtest,kerneloption,level)
%
% This function creates multiscale kernels K an
www.eeworm.com/read/256398/12001868
m normalizekernel.m
function K=normalizekernel(x,kernel,kerneloption,xsup);
% USAGE
%
% K=normalizekernel(x,kernel,kerneloption,xsup);
n=size(x,1);
for i=1:n
kdiag1(i,:)=svmkernel(x(i,:),kernel,kerneloptio