Demonstration script for LSSB-AM modulation. The message signal is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3, and zero otherwise.
標簽: Demonstration modulation for LSSB-AM
上傳時間: 2016-12-27
上傳用戶:aysyzxzm
Demonstration script for envelope detection. The message signal is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3, and zero otherwise.
標簽: Demonstration for detection envelope
上傳時間: 2014-01-24
上傳用戶:stella2015
Produces a matrix of derivatives of network output w.r.t. % each network weight for use in the functions NNPRUNE and NNFPE.
標簽: network w.r.t. derivatives Produces
上傳時間: 2013-12-18
上傳用戶:sunjet
包含VHDL語言設計7人表決器電路和系檢測器列
上傳時間: 2014-01-05
上傳用戶:lhc9102
The AVRcam source files were built using the WinAVR distribution (version 3.3.1 of GCC). I haven t tested other versions of GCC, but they should compile without too much difficulty. * The source files for the AVRcam had the author name and copyright information added back into them after the judging of the project, since it states in the competition rules that the author s name can not be present during their inspection. * The included source files are the ones that were submitted for the entry into the Circuit Cellar contest. I have continued to develop the AVRcam, and have added several new features (such as ignoring objects that aren t larger than a minimum size, removing tracked objects that overlap with each, and some general optimizations). If you are interested in the latest source, email me at john@jrobot.net * For more info about the AVRcam, check out http://www.jrobot.net John Orlando August 20, 2004
標簽: distribution version AVRcam source
上傳時間: 2016-12-30
上傳用戶:GavinNeko
源碼開放的嵌入式實時操作系統T-Kernel
上傳時間: 2016-12-30
上傳用戶:netwolf
C語言數據結構課設作品 很經典 Don t Lose!
上傳時間: 2013-12-08
上傳用戶:han_zh
編制具有如下原型的函數prime,用來判斷整數n是否為素數:bool prime(int n) 而后編制主函數,任意輸入一個大于4的偶數d,找出滿足d=d1+d2的所有數對,其中要求d1與d2均為素數(通過調用prime來判斷素數)。如偶數18可以分解為11+7以及13+5;而偶數80可以分解為:43+37、61+19、67+13、73+7。 提示:i與d-i的和恰為偶數d,而且只有當i與d-i均為奇數時才有可能成為所求的“數對”。
上傳時間: 2017-01-02
上傳用戶:Breathe0125
編寫具有如下原型的函數:int f(unsigned long x, int n, int& Lxn) 它負責將整數x的第n位(從左邊數第n位,n>0)的數值放到引用Lxn之中(將作為結果返回到主調函數的對應實參變量中),并將倒數第n位(從右邊數第n位,n>0)的數值作為函數結果返回去。并編制主函數對它進行調用以驗證其正確性。 例如,當x=123456789,n=7時,執行語句“Rxn=f(x, n, Lxn) ”將使返回的Lxn為7,并使Rxn變為3;而執行語句“Rxn=f(12345, 6, Lxn) ”將使Lxn與Rxn都變為為0(超出數的“長度”即總位數時返回0)。
上傳時間: 2017-01-02
上傳用戶:s363994250
編寫具有如下函數原型的遞歸與非遞歸兩種函數f,負責判斷數組a的前n個元素是否從大到小完全有序了,是則返回true,否則返回false。并編制主函數對它們進行調用,以驗證其正確性。 bool f(int a[], int n) 提示: (1)非遞歸函數中只需逐對地判斷各a[i]與a[i+1]是否都已從大到小有序排列(i = 0,1,…,n-2)。 (2)遞歸函數中將問題分解處理為:若n=1(即只有1個元素時)則返回true而遞歸出口;n>1時,若最后一對元素不順序則返回false,否則進行遞歸調用(傳去實參a與 n-1,去判斷前n-1個元素的順序性),并返回遞歸調用的結果(與前n-1個元素的是否順序性相同)。
上傳時間: 2017-01-02
上傳用戶:清風冷雨