代码搜索:linear
找到约 10,000 项符合「linear」的源代码
代码结果 10,000
www.eeworm.com/read/483608/6599669
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/483114/6609790
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/481648/6636943
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/480287/6670430
m linear.m
www.eeworm.com/read/479927/6683772
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/479129/6699558
m linear.m
function value=linear(x, knownys, knownxs)
% This will compute an output value that is
% on a line determined by 4 input values,
% known x's, known y's. The independant
% value is give.
%
% value = l
www.eeworm.com/read/479129/6699597
m linear.m
function value=linear(x, knownys, knownxs)
% This will compute an output value that is
% on a line determined by 4 input values,
% known x's, known y's. The independant
% value is give.
%
% value = l
www.eeworm.com/read/263812/11339913
vbw linear.vbw
frmLinear = 44, 44, 303, 314, , 22, 22, 281, 292, C
modLinear = 44, 44, 562, 441,
www.eeworm.com/read/263812/11339915
mak linear.mak
Type=Exe
Form=FRMLINEA.FRM
Module=modLinear; modLinear.bas
IconForm="frmLinear"
Startup="frmLinear"
Command32=""
Name="Linear"
HelpContextID="0"
CompatibleMode="0"
MajorVer=1
MinorVer=0
Rev
www.eeworm.com/read/262777/11391582
cpp linear.cpp
#include
#include
#include
#define MAX 100
void swap(int &a,int &b)
{
int temp;
temp=a;
a=b;
b=temp;
}
void merge(int array[],int p,int q,int r)
{
int