搜索资源列表
LL(1)yufafenxi
- *--- --- --声明--- --- -----*/ /* VC6.0下运行通过 此程序为本人苦心所做,请您在阅读的时候,尊重本人的 劳动。可以修改,但当做的每一处矫正或改进时,请将改进 方案,及修改部分发给本人 (修改部分请注名明:修改字样) Email: jink2005@sina.com QQ: 272576320 ——初稿完成:06-5-27 jink2005 补充: 程序存在问题: (1) follow集不能处理
matlabxueqi
- 小学期的源程序 1.试编MATLAB程序。信号 sinc(10*t),-2<=t<=2 m(t)= 0,其它 用100hz的载波来产DSB信号并解调。完成下列工作: 画出已调信号; 求已调信号的频谱,并用图像表示。 画出解调信号; 求解调信号的频谱,并用图像表示。 2.信号 sinc2(100t),|t|≤t0 m(t)= 0, 其它 采用频率调制调制为1000HZ的载波。频偏常数为kf=50,t0=0.2
Delphi_DDE_RsLinX
- 根据炼铁新厂煤气放散塔自控系统的运行情况, 从RockW e ll工控软件RsL inx 入手, 分析了RsL inx 软件的通 讯方式, 提出了采用动态数据交换技术的通讯方案。并用Delphi编制程序, 实现了数据远传和显示, 声音报警等功 能, 保证了煤气系统安全运行。同时也为数据存储, 不同工控系统数据交换提供了一种方法-The deve lopm ent program o f dynam ic da ta exchange techno logy is put forw ard
WebApplication1
- noting to do so i am trying to download somthing but i m not done-noting to do so i am trying to download somthing but i m not done
hspa-simulationz
- I m trying to create a project for my master s degree, and I really need some Matlab HSDPA files which I could download here, if I would be given permission. So, I am (friendly and) politely asking, if it s possible, to let me download one archieve
satellite-flying
- The program shows the satellites are flying around the earth. Quite simple realization that it was possible to know the ground. But I m not against the rest when he received a simple option. I think if you deal with the imposition of the imag
折半查找法
- 折半查找法是效率较高的一种查找方法。假设有已经按照从小到大的顺序排列好的五个整数a0~a4,要查找的数是X,其基本思想是: 设查找数据的范围下限为l=1,上限为h=5,求中点m=(l+h)/2,用X与中点元素am比较,若X等于am,即找到,停止查找;否则,若X大于am,替换下限l=m+1,到下半段继续查找;若X小于am,换上限h=m-1,到上半段继续查找;如此重复前面的过程直到找到或者l>h为止。如果l>h,说明没有此数,打印找不到信息,程序结束。(The method of bin