代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/492363/6421864
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/492363/6421865
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/492363/6421871
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/492363/6421873
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/492033/6430256
h scaldamtime.h
#ifndef SCALDAMTIME_H
#define SCALDAMTIME_H
#include
#include "alias.h"
#include "strretalg.h"
struct matrix;
struct vector;
struct atsel;
/**
This class defines scalar isotropic damage
www.eeworm.com/read/492033/6430344
sh change.sh
#!/bin/bash
# execution path: *
# parameter: files (file.1 file.2, file.* , *.in *.cpp , *.* , ...)
# function: v aktualnim adresari prohleda vsechny specifikovane soubory
# a vsechny retez
www.eeworm.com/read/492033/6430547
h scaldam.h
#ifndef SCALDAM_H
#define SCALDAM_H
#include "iotools.h"
#include "alias.h"
#include "strretalg.h"
struct matrix;
struct vector;
struct atsel;
/**
This class defines scalar isotropic damage materi
www.eeworm.com/read/491340/6438846
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/491340/6438848
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/491340/6438860
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