代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/363293/9962784
bak 2_uv2.bak
www.eeworm.com/read/167387/9970663
rc2 capture2.rc2
//
// CAPTURE2.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
//
www.eeworm.com/read/362823/9979589
uv2 lcd2.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1, 0x0
Options 1,0,0 // Target
www.eeworm.com/read/362646/9987943
uv2 test2.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,2, 0x0
Option
www.eeworm.com/read/362637/9988401
uv2 flashled2.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,2,
Options 1,0,0
www.eeworm.com/read/362596/9989364
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/362593/9989643
m chap2_2.m
%Delay Control with Dalin Algorithm
clear all;
close all;
ts=0.5;
%Plant
sys1=tf([1],[0.4,1],'inputdelay',0.76);
dsys1=c2d(sys1,ts,'zoh');
[num1,den1]=tfdata(dsys1,'v');
%Ideal closed loop
www.eeworm.com/read/166836/9995797
m ch2_2.m
% ch2_2.m
% Function plots of a 2-dimensional optimization problem
x=0:0.001:1;
y=sin(2*pi*x)+0.3*sin(2*pi*3*x)+0.05*cos(2*pi*5*x);
plot(x,y)
title('Run ch2_2.m file to get this plot');