代码搜索:linear
找到约 10,000 项符合「linear」的源代码
代码结果 10,000
www.eeworm.com/read/285034/8874902
java linear.java
// An interface for LIFO/FIFO structures.
// (c) 1998,2001 duane a. bailey
package structure;
/**
* An interface describing the behavior of linear data structures, structures that
* that have com
www.eeworm.com/read/285034/8874986
class linear.class
www.eeworm.com/read/384201/8891438
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/383822/8915876
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/186057/8964600
gif linear.gif
www.eeworm.com/read/383010/8981622
la linear.la
www.eeworm.com/read/383010/8981635
so linear.so
www.eeworm.com/read/382511/9023652
c linear.c
/*
* tslib/plugins/linear.c
*
* Copyright (C) 2001 Russell King.
*
* This file is placed under the LGPL. Please see the file
* COPYING for more details.
*
* $Id: linear.c,v 1.10 2005/02/26
www.eeworm.com/read/183443/9158973
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/378479/9229938
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