代码搜索:parameter

找到约 10,000 项符合「parameter」的源代码

代码结果 10,000
www.eeworm.com/read/476983/6743746

h field.h

#if !defined(AFX_FIELD_H__284CDF34_D77A_4538_9790_62AA03CABA04__INCLUDED_) #define AFX_FIELD_H__284CDF34_D77A_4538_9790_62AA03CABA04__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VE
www.eeworm.com/read/477099/6745358

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/476862/6752324

v ncofsymbol_st.v

// Copyright (C) 1988-2007 Altera Corporation // Any megafunction design, and related net list (encrypted or decrypted), // support information, device programming or simulation file, and any other /
www.eeworm.com/read/476530/6755573

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/476530/6755575

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/476530/6755581

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/476530/6755583

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/476406/6760756

f90 lagrange.f90

module INTERPOLATE_UTILITY use sgl implicit none type point real x,y end type real, parameter :: PI=3.14159 real, parameter :: xmin = 0.0, xmax = PI*3.0 integer, parameter ::
www.eeworm.com/read/476406/6760758

f90 least_square.f90

module datas implicit none integer, parameter :: N=5 real :: temperature(N) = (/5.0,10.0,15.0,20.0,25.0/) ! 记录温度 real :: length(N) = (/1.047,1.112,1.1152,1.191,1.252/)! 记录不同温度下的长度 real
www.eeworm.com/read/476406/6760767

f90 ex0703.f90

program ex0703 implicit none integer, parameter :: classes = 5 integer, parameter :: students = 5 integer :: student(students, classes) integer s ! 用来指定学生号码 integer c ! 用来指定班级号码