代码搜索:linear

找到约 10,000 项符合「linear」的源代码

代码结果 10,000
www.eeworm.com/read/111603/15509375

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/110358/15535951

gif linear.gif

www.eeworm.com/read/109800/15548192

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/109799/15548342

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/109477/15556258

h linear.h

#ifndef _LINEAR_H #define _LINEAR_H #include struct dev_info { kdev_t dev; unsigned long size; unsigned long offset; }; typedef struct dev_info dev_info_t; struct linear_hash
www.eeworm.com/read/108501/15585313

c linear.c

www.eeworm.com/read/102430/15780758

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.6 2002
www.eeworm.com/read/102394/15782887

c linear.c

/* fit/linear.c * * Copyright (C) 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published b
www.eeworm.com/read/102394/15783375

c linear.c

/* interpolation/linear.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU
www.eeworm.com/read/101557/15826620

m linear.m

function [ret,x0,str]=linear(t,x,u,flag); %LINEAR is the M-file description of the SIMULINK system named LINEAR. % The block-diagram can be displayed by typing: LINEAR. % % SYS=LINEAR(T,X,U,FLAG)