代码搜索:kernel
找到约 10,000 项符合「kernel」的源代码
代码结果 10,000
www.eeworm.com/read/223597/14622846
makefile
# Comment/uncomment the following line to enable/disable debugging
#DEBUG = y
# Change it here or specify it on the "make" commandline
INCLUDEDIR = /usr/include
ifeq ($(DEBUG),y)
DEBFLAGS = -O -g
www.eeworm.com/read/222772/14674192
makefile
all: data.hex
data.hex: data.o kernel.o math.o stdio.o
cas -o data.hex math.o data.o kernel.o stdio.o
data.o: 8051fa.h kernel.h math.h stdio.h data.s
cas -c data.s
kernel.o: 8051fa.h kernel.h data.h
www.eeworm.com/read/222301/14697756
m getkernel.m
function kernel = getkernel(net)
% GETKERNEL
%
% Accessor method returning the kernel used in a support vector classification
% network.
%
% ker = getkernel(net)
%
% File : @svc/
www.eeworm.com/read/222301/14697763
m display.m
function display(ker)
% DISPLAY
%
% Display a textual representation of a radial basis kernel object.
%
% display(ker);
%
% File : @rbf/display.m
%
% Date : Tuesday 12th
www.eeworm.com/read/222301/14697806
m train.m
function net = train(tutor, x, y, C, kernel, zeta, net)
% TRAIN
%
% Train a support vector classification network, using the sequential minimal
% optimisation algorithm.
%
% net = train(tut
www.eeworm.com/read/222301/14697822
m display.m
function display(ker)
% DISPLAY
%
% Display a textual representation of a polynomial kernel object.
%
% display(ker);
%
% File : @polynomial/display.m
%
% Date : Tuesday
www.eeworm.com/read/222301/14697831
m display.m
function display(ker)
% DISPLAY
%
% Display a textual representation of a linear kernel object.
%
% display(ker);
%
% File : @linear/display.m
%
% Date : Tuesday 12th Se
www.eeworm.com/read/221780/14721948
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