代码搜索:linear
找到约 10,000 项符合「linear」的源代码
代码结果 10,000
www.eeworm.com/read/434253/7879258
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/298331/7966043
cpp linear.cpp
#include "StdAfx.h"
#include ".\linear.h"
#include
using namespace std;
Linear::Linear(void)
{
num=NULL;
m=0;
n=0;
}
Linear::~Linear(void)
{
delete[]num;
}
Linear
www.eeworm.com/read/298331/7966048
h linear.h
#pragma once
class Linear
{
public:
Linear(void);
virtual ~Linear(void);
bool IsLinear();
Linear(int **m1,int a,int b);
void Inital(int **m,int a, int b);
int MinD();
prote
www.eeworm.com/read/297875/7991027
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/398324/7994445
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/398324/7994600
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/397761/8023835
m linear.m
function ker = linear(arg)
if nargin == 0
% this is the default constructor
ker.dummy = [];
ker = class(ker, 'linear');
elseif isa(a, 'linear');
% this is t
www.eeworm.com/read/296104/8121928
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/296097/8122517
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/195610/8138782
frm linear.frm
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic