代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/491340/6438907
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/491340/6438910
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/491340/6438968
v count4_tp.v
`timescale 1ns/1ns
`include "count4.v"
module coun4_tp;
reg clk,reset;
wire[3:0] out;
parameter DELY=100;
count4 mycount(out,reset,clk);
always #(DELY/2) clk = ~clk;
initial
begin
clk =0
www.eeworm.com/read/491122/6440903
m chap3_6.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/491122/6440904
m chap3_4.m
%Fuzzy Controller
clear all;close all;
a=newfis('fuzz_ljk');
f1=1.0;
a=addvar(a,'input','e',[-3*f1,3*f1]); % Parameter e
a=addmf(a,'input',1,'NB','zmf',[-3*f1,-1*f1]);
a=
www.eeworm.com/read/491122/6440910
m chap3_7.m
%Fuzzy Immune PID Control
clear all;
close all;
a=newfis('fuzz_ljk');
f1=10;
a=addvar(a,'input','u',[-f1*1,f1*1]); %Parameter e
a=addmf(a,'input',1,'NB','zmf',[-f1*1,f1*1]);
a=a
www.eeworm.com/read/491122/6440912
m chap3_3.m
%Fuzzy Controller
clear all;
close all;
a=newfis('fuzzf');
f1=1;
a=addvar(a,'input','e',[-3*f1,3*f1]); %Parameter e
a=addmf(a,'input',1,'NB','zmf',[-3*f1,-1*f1]);
a=addmf(a,'inpu
www.eeworm.com/read/491219/6441859
cpp initialization.cpp
#include
#include "Random.h"
#include "Parameter.h"
#include "Initialization.h"
namespace az
{
namespace mea
{
namespace ini
{
//Random Initialization
CPopulationMO& Random::I
www.eeworm.com/read/490882/6445087
m cp0201_bits.m
%
% FUNCTION 2.1 : "cp0201_bits"
%
% Generates a stream of equiprobable binary values ('bits')
% The number of bits ('numbits') is an input parameter
%
% Programmed by Guerino Giancola
%
fun
www.eeworm.com/read/490589/6449081
bsf int_div.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to