代码搜索:2

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

代码结果 10,000
www.eeworm.com/read/198125/7950287

asm 3_2_2.asm

stack segment stack 'stack' dw 32 dup(?) stack ends data segment W1 dw 3040H W2 dw 5010H W3 dw ? data ends code segment begin proc far assume ss:stack,cs:cod
www.eeworm.com/read/298525/7952090

dp2 timer2.dp2

timer2.o: C:/icc/include/iom48v.h C:/icc/include/macros.h D:\ICCTES~1\1128/main.h D:\ICCTES~1\1128/modbus.h D:\ICCTES~1\1128/timer2.h
www.eeworm.com/read/197958/7960453

m dxz2_2.m

clear;global M r q p u g lemda; M=2000; lemda=0.3; r=[9.6 18.5 49.4 23.9 8.1 14 40.7 31.2 33.6 36.8 11.8 9 35 9.4 15 5]'/100; q=[42 54 60 42 1.2 39 68 33.4 53.3 40 31 5.5 46 5.3 23 0]'/100; p=[2.
www.eeworm.com/read/298372/7964872

c e2-2.c

www.eeworm.com/read/298372/7964895

c op2-2.c

www.eeworm.com/read/298354/7965377

jpg 1-2-2.jpg

www.eeworm.com/read/298354/7965416

gif 3-2-2.gif

www.eeworm.com/read/197646/7983419

m exp2_2.m

clc clear more on echo on %为便于理解,在程序等执行过程中显示程序的表达式 a=16;b=12; c=3; d=4; e=a+b-c*d f=e/2 k=e\2 h=c^3 g=e+f+ ... 2+1-9 aa=sin(g) abs(aa) bb=2+3j cc=conj(bb) rbb=real(bb) log(rbb)
www.eeworm.com/read/297846/7992561

m fig2_2.m

% This program can be used tore-produce Figure 2.2 of text clear all close all xg = linspace(-6,6,1500); % randowm variable between -4 and 4 xr = linspace(0,6,1500); % randowm variable between 0 a
www.eeworm.com/read/398351/7992590

m ex2_2.m

clear all; close all; clc; N=32; n=0:N-1; xn=cos(pi*n/6); k=0:N-1; WN=exp(-j*2*pi/N); nk=n'*k; WNnk=WN.^nk; Xk=xn*WNnk; figure(1) stem(n,xn) figure(2) stem(k,abs(Xk));