代码搜索:Num

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

代码结果 10,000
www.eeworm.com/read/242081/7073158

cpp 2388.cpp

#include int print(int n) { int i,num[n][2],ss[n][2]; for(i=0;i
www.eeworm.com/read/242081/7073164

cpp 2022.cpp

#include int print(long n) { long num[n],nm[n],t,sum; int i,j; for(i=0;i
www.eeworm.com/read/242081/7073165

cpp 1414.cpp

/*1414*/ #include int print(int n) { int x[n],y[n],i,num=0; for(i=0;i
www.eeworm.com/read/284778/7074135

m chapter4_3.m

num=[2 1];den=[3 4 1]; sys1=tf(num,den) get(sys1); % tf模型属性
www.eeworm.com/read/284778/7074139

m chapter4_21.m

num=[1]; den=conv([1,0],[1,1]); [A,B,C,D]=tf2ss(num,den); g=ss(A,B,C,); N=fliplr(eye(2)); g=ss2ss(g,N); [A,B,C,D]=ssdata(g); T=0.1;
www.eeworm.com/read/284778/7074270

m chapter5_12a.m

wn=1;zet=[0:0.1:1,2,3,5]; hold on for i=1:length(zet) num=wn^2;den=[1,2*zet(i)*wn,wn^2]; bode(num,den); end hold off
www.eeworm.com/read/284778/7074275

m chapter5_12b.m

wn=[0.1:0.1:1]; zet=0.707; hold on for i=1:length(wn) num=wn(i)^2; den=[1,2*zet*wn(i),wn(i)^2]; bode(num,den); end hold off
www.eeworm.com/read/284778/7074324

m chapter10_1.m

%Expert PID Controller clear all; close all; ts=0.001; sys=tf(5.235e005,[1,87.35,1.047e004,0]); dsys=c2d(sys,ts,'z'); [num,den]=tfdata(dsys,'v'); u_1=0.0;u_2=0.0;u_3=0.0; y_1=0;y_2=0;y_3=0
www.eeworm.com/read/302920/7083253

java mathtool.java

public class MathTool { public static int sum(int... nums){ int sum =0; for(int num : nums){ sum+=num; } return sum; } }
www.eeworm.com/read/275571/7083356

Լɪ

#include using namespace std; typedef struct LNode { int num,pwd; struct LNode *next; }LNode,*LinkList; int main() { while (1) { int i,j,m,n,k;