代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/239320/13287839
m demo1.m
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% DDE-BIFTOOL demo 1 %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%
clear;
% init system:
[name,n]=sys_init
%% name = neuron
%% n = 2
% construct a first, approximate steady state po
www.eeworm.com/read/239320/13287877
m sd_demo.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% DDE-BIFTOOL sd-demo %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%
clear;
% init system:
[name,n]=sys_init
% construct a first, approximate steady state point:
stst.kind='stst';
www.eeworm.com/read/239320/13288015
m p_tohcli.m
function hcli=p_tohcli(point)
% INPUT:
% point a periodic solution near a homoclinic solution
% alternatively an initial point in a hcli structure,
% where a good startin
www.eeworm.com/read/137785/13297100
m awgn.m
%*************************************************************************************
% This function pertains to the addition of AWGN with mean zero and
% parameter 'variance' to
www.eeworm.com/read/239193/13297366
h slnprocess.h
#pragma once
#include "stdafx.h"
/////////////////////////////////////////////////////////////////////////////////
//
// slnprocess class
//
// S.Rodriguez - Sept 2002
//
//
// purpose : co
www.eeworm.com/read/239069/13303975
plg winmine.plg
Build Log
--------------------Configuration: winmine - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMIN
www.eeworm.com/read/137539/13313856
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/137539/13313862
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/137539/13313890
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/137539/13314015
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