代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/121871/14732400
h field.h
#if !defined(AFX_FIELD_H__522768ED_360F_480B_8B2A_86845BB88AA6__INCLUDED_)
#define AFX_FIELD_H__522768ED_360F_480B_8B2A_86845BB88AA6__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VE
www.eeworm.com/read/121870/14732672
h field.h
#if !defined(AFX_FIELD_H__82EF3D11_D5D5_472E_B8DC_2250B472BCCC__INCLUDED_)
#define AFX_FIELD_H__82EF3D11_D5D5_472E_B8DC_2250B472BCCC__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VE
www.eeworm.com/read/121786/14737658
h slnprocess.h
#pragma once
/////////////////////////////////////////////////////////////////////////////////
//
// slnprocess class
//
// S.Rodriguez - Sept 2002
//
//
// purpose : convert a .sln file f
www.eeworm.com/read/221412/14741593
m chap3_3.m
%Fuzzy Immune PID Control
clear all;
close all;
a=newfis('fuzz_ljk');
f1=1.0;
a=addvar(a,'input','u',[-f1*1,f1*1]); %Parameter e
a=addmf(a,'input',1,'NB','zmf',[-f1*1,f1*1]);
a=
www.eeworm.com/read/221412/14741597
m chap3_2.m
%Fuzzy Tunning PID Control
clear all;
close all;
a=newfis('fuzzpid');
a=addvar(a,'input','e',[-3,3]); %Parameter e
a=addmf(a,'input',1,'NB','zmf',[-3,-1]);
a=addmf(a,'
www.eeworm.com/read/121515/14754746
hpp bindconv.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/221024/14776679
html http:^^www.cs.wisc.edu^~cs640-1^garb.html
Date: Tue, 05 Nov 1996 20:52:56 GMT
Server: NCSA/1.5
Content-type: text/html
Last-modified: Thu, 09 Nov 1995 20:50:29 GMT
Content-length: 2962
Garbler info
www.eeworm.com/read/220620/14794967
v rom.v
module ROM(addr,data,oe);
output[7:0] data;
input[14:0] addr;
input oe;
reg[7:0] mem[0:255];
parameter DELAY = 100;
assign #DELAY data=(oe==0) ? mem[addr] : 8'hzz;
initial $readmemh("rom.he
www.eeworm.com/read/220620/14794974
v test2.v
module test2;
reg clk1,clk2;
parameter CYCLE = 100;
always
begin
{clk1,clk2} = 2'b10;
#(CYCLE/4) {clk1,clk2} = 2'b01;
#(CYCLE/4) {clk1,clk2} = 2'b11;
#(CYCLE/4) {clk1,clk2} =
www.eeworm.com/read/220617/14795065
v wave2.v
`timescale 10ns/1ns
module wave2;
reg wave;
parameter cycle=5;
initial
fork
wave=0;
#(cycle) wave=1;
#(2*cycle) wave=0;
#(3*cycle) wave=1;
#(4*cycle) wave=0;
#(5*cycle) wave=