代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/255755/12058323
m sigm.m
%SIGM Sigmoid map
%
% W = W*SIGM
% B = A*SIGM
% W = W*SIGM([],SCALE)
% B = SIGM(A,SCALE)
%
% INPUT
% A Dataset (optional)
% SCALE Scaling parameter (optional, default: 1)
%
%
www.eeworm.com/read/152914/12074570
f pi.f
program main
double precision PI25DT
parameter (PI25DT = 3.141592653589793238462643d0)
double precision pi
write(6, 97) PI25DT
97 format
www.eeworm.com/read/255510/12077842
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=
www.eeworm.com/read/255510/12077847
v adder.v
module adder(cout,sum,a,b,cin);
parameter size=16;
output cout;
output[size-1:0] sum;
input cin;
input[size-1:0] a,b;
assign {cout,sum}=a+b+cin;
endmodule
www.eeworm.com/read/255510/12077868
v wave1.v
`timescale 10ns/1ns
module wave1;
reg wave;
parameter cycle=10;
initial
begin
wave=0;
#(cycle/2) wave=1;
#(cycle/2) wave=0;
#(cycle/2) wave=1;
#(cycle/2) wave=0;
#(cycle/2
www.eeworm.com/read/255510/12077978
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/255510/12077985
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/255510/12078110
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/341517/12080534
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/341517/12080535
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=