代码搜索:Num

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

代码结果 10,000
www.eeworm.com/read/166248/10027189

cpp bpso.cpp

//库文件 #include "stdafx.h" #include"stdio.h" #include"stdlib.h" #include"time.h" #include"math.h" //随机数定义 #define rdint(i) (rand()%(int)(i)) #define rdft() (double)((double)rdint(16384)/(16383.
www.eeworm.com/read/166210/10029127

txt yemian.txt

//操作系统页面调用模拟 #include #include #include struct page; typedef struct Page *PPage; struct Page{ int num; int used; }; //////////////////////////// //函数功能:
www.eeworm.com/read/166190/10029877

m f52.m

num1=[1,1];den1=conv([1,0],[1,1,1]);sys1=tf(num1,den1);%sys1的MATLAB表达 num2=[2,3];den2=conv([1,1],[1,1]);sys2=tf(num2,den2); %sys2的MATLAB表达 num3=[6,5];den3=[2,3];sys3=tf(num3,den3);
www.eeworm.com/read/166190/10029977

m ex411a0.m

num=1000;den=conv([1,0],conv(..., [0.1,1],[0.001,1])); G=tf(num,den); margin(G)
www.eeworm.com/read/166190/10029998

m ex411-0.m

num=1000;den=conv([1,0],conv(..., [0.1,1],[0.001,1])); G=tf(num,den); margin(G)
www.eeworm.com/read/166190/10030008

m ex362.m

num=10; den=conv([1,0],conv([5,1],[10,1])); g=tf(num,den);nyquist(g,{0.1,100})
www.eeworm.com/read/166190/10030114

m fig4114.m

T=10;beta=0.1; num=[beta*T,1];den=[T,1]; G=tf(num,den);bode(G);grid;
www.eeworm.com/read/166190/10030153

m ex413a0.m

num=40;den=conv([1,0],conv([0.0625,1],[0.2,1])); G=tf(num,den);margin(G);
www.eeworm.com/read/361768/10036567

m gedinv.m

function num = gedinv(x,nu) % PURPOSE: % Evaluates the Probabiliy a vector of observations x(Nx1) % has if drawn from a Generalzed Error Dist'n with parameter nu % % % USAGE: % num = gedinv(
www.eeworm.com/read/166055/10038216

java evenodd.java

//******************************************************************** // EvenOdd.java Author: Lewis/Loftus // // Demonstrates the use of the JOptionPane class. //*****************************