代码搜索:2000
找到约 10,000 项符合「2000」的源代码
代码结果 10,000
www.eeworm.com/read/143184/12890475
m apolloeq.m
function dx=apolloeq(t,x)
%APOLLOEQ 函数用来描述 Apollo 卫星的数学模型,它可以直接用于
% 常微分方程的数值求解。
%Designed by Prof D Xue (c) 2000
mu=1/82.45; mu1=1-mu;
r1=sqrt((x(1)+mu)^2+x(3)^2); r2=sqrt((x(1)-mu1)^2+x(3)^2
www.eeworm.com/read/244035/12897389
m ex_06_03_4.m
% ex_06_03_4.m : 习题 6.3
clear;
fp=[300 400];
fs=[200 500];
rp=3;
rs=40;
Fs=2000;
wp=2*fp/Fs;ws=2*fs/Fs;
[n,wn]=cheb1ord(wp,ws,rp,rs);
[b,a]=cheby1(n,rp,wp)
[h,w]=freqz(b,a,256,Fs);
h=20
www.eeworm.com/read/244035/12897390
m ex_06_03_3.m
% ex_06_03_3.m : 习题 6.3
clear;
fp=[300 400];
fs=[200 500];
rp=3;
rs=40;
Fs=2000;
wp=2*fp/Fs;ws=2*fs/Fs;
[n,wn]=buttord(wp,ws,rp,rs);
[b,a]=butter(n,wp)
[h,w]=freqz(b,a,256,Fs);
h=20*log
www.eeworm.com/read/244017/12898888
lkf debug.lkf
-z -q -c -m"./Debug/ip.map" -o"./Debug/ip.out" -x -i"C:/ti/c2000/bios/lib" -i"C:/ti/c2000/rtdx/lib" -i"C:/ti/c2000/cgtools/lib"
"D:\UDP\IP\Debug\DSP28_Adc.obj"
"D:\UDP\IP\Debug\DSP28_CpuTimers.obj"
www.eeworm.com/read/244017/12898911
log cc_build_release.log
------------------------------ ip.pjt - Release ------------------------------
[Linking...] "C:\ti\c2000\cgtools\bin\cl2000" -@"Release.lkf"
Build Complete,
0 Errors, 0 Warnings, 0 Remarks.
www.eeworm.com/read/244017/12898973
lkf release.lkf
-z -q -c -m"./Release/ip.map" -o"./Release/ip.out" -x -i"C:/ti/c2000/bios/lib" -i"C:/ti/c2000/rtdx/lib" -i"C:/ti/c2000/cgtools/lib"
"D:\UDP\IP\Release\DSP28_Adc.obj"
"D:\UDP\IP\Release\DSP28_CpuTime
www.eeworm.com/read/244017/12898975
log cc_build_debug.log
------------------------------- ip.pjt - Debug -------------------------------
[Linking...] "C:\ti\c2000\cgtools\bin\cl2000" -@"Debug.lkf"
Build Complete,
0 Errors, 0 Warnings, 0 Remarks.
www.eeworm.com/read/244017/12898984
lkv debug.lkv
-z -q -c -m"./Debug/ip.map" -o"./Debug/ip.out" -x -i"C:/ti/c2000/bios/lib" -i"C:/ti/c2000/rtdx/lib" -i"C:/ti/c2000/cgtools/lib"
"D:\UDP\IP\Debug\DSP28_Adc.obj"
"D:\UDP\IP\Debug\DSP28_CpuTimers.obj"
www.eeworm.com/read/244017/12899060
lkv release.lkv
-z -q -c -m"./Release/ip.map" -o"./Release/ip.out" -x -i"C:/ti/c2000/bios/lib" -i"C:/ti/c2000/rtdx/lib" -i"C:/ti/c2000/cgtools/lib"
"D:\UDP\IP\Release\DSP28_Adc.obj"
"D:\UDP\IP\Release\DSP28_CpuTime
www.eeworm.com/read/143089/12900043
cpp localextern2.cpp
//: C10:LocalExtern2.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
int i = 5;
///:~