代码搜索:linear
找到约 10,000 项符合「linear」的源代码
代码结果 10,000
www.eeworm.com/read/246126/12754688
h linear.h
/**************************************************************************
(C)Copyright Cheertek Inc. 2002-2003,
D300, all right reserved.
Product : WinAV Firmwar
www.eeworm.com/read/246126/12754834
c linear.c
//////////////////////////////////////////////////////////////
// ***** Big Modification History Area *****
// LLY.274p, some big modification:
// [1] Rename all MP3 relative info. because module n
www.eeworm.com/read/245176/12813319
m linear.m
function ker = linear(arg)
% LINEAR
%
% Construct a linear kernel object,
%
% K(x1, x2) = x1.x2';
%
% Examples:
%
% % default constructor
%
% ker1 = linear;
%
% % copy cons
www.eeworm.com/read/143954/12827678
txt linear.txt
0 #Linear
9 # Number of features
0.610493 0.097056 -0.586427 0.029765 1.185358 -0.548372 -0.545261 -1.191849 -2.951864 #weight vector
-8.44960 #Threshold b
5.00000 #C parameter
7 #Number of supp
www.eeworm.com/read/244507/12859426
v linear.v
module linear(c,u,clk);
output[6:0] c;
input[3:0] u;
input clk;
reg[6:0] c;
always @(posedge clk)
begin
c[6] = u[3];
c[5] = u[2];
c[4] = u[1];
c[3] = u[0];
c[2] = u[1] ^ u[2] ^ u[3];
c[1
www.eeworm.com/read/143521/12868393
v linear.v
module linear(c,u,clk);
output[6:0] c;
input[3:0] u;
input clk;
reg[6:0] c;
always @(posedge clk)
begin
c[6] = u[3];
c[5] = u[2];
c[4] = u[1];
c[3] = u[0];
c[2] = u[1] ^ u[2] ^ u[3];
c[1
www.eeworm.com/read/140850/13059648
m linear.m
function ker = linear(arg)
% LINEAR
%
% Construct a linear kernel object,
%
% K(x1, x2) = x1.x2';
%
% Examples:
%
% % default constructor
%
% ker1 = linear;
%
% % copy cons
www.eeworm.com/read/140279/13091029
m linear.m
%% Pattern Association Showing Error Surface
% A linear neuron is designed to respond to specific inputs with target outputs.
%
% Copyright 1992-2002 The MathWorks, Inc.
% $Revision: 1.14 $ $Dat