小信號放大器的設計 1. 放大器是射頻/微波系統的必不可少的部件。 2. 放大器有低噪聲、小信號、高增益、中功率、大功率等。 3. 放大器按工作點分有A、AB、B、C、D…等類型。 4. 放大器指標有:頻率范圍、動態范圍、增益、噪聲系數、工作效率、1dB壓縮點、三階交調等。
上傳時間: 2016-02-10
上傳用戶:ggwz258
B樹代碼以及演示,主要是讓大家理解B樹是如何組成的,以及如何刪除和查詢
上傳時間: 2013-12-15
上傳用戶:cmc_68289287
the calculator s usage! after you have inputed 2 operators,choose + - * / function! But the only situation I did t deal with is that when you choos + fuction ,and the operaters signs is like this -A+B,just turn it to B-A!
標簽: calculator the operators function
上傳時間: 2016-02-12
上傳用戶:lili123
The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).
標簽: converts Toolbox complex logical
上傳時間: 2016-02-12
上傳用戶:a673761058
比較牛b的一個計算器程序,源碼在word文檔里面,
上傳時間: 2016-02-14
上傳用戶:z1191176801
DirectX not only provides fast access to the hardware and therefore incredibly speedy performance, but it also makes it much easier for hardware developers to produce new devices that work well in the Windows environment. The DirectX APIs take away the necessity of writing your own low-level, device-specific code to access hardware such as the display adapter and network card, making it much easier for you to write programs that take full advantage of the computer s multimedia capabilities.
標簽: performance incredibly therefore hardware
上傳時間: 2016-02-16
上傳用戶:秦莞爾w
Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權可正可負 2)算法描述: a)初始化:dis[u,v]=w[u,v] b)For k:=1 to n For i:=1 to n For j:=1 to n If dis[i,j]>dis[i,k]+dis[k,j] Then Dis[I,j]:=dis[I,k]+dis[k,j] c)算法結束:dis即為所有點對的最短路徑矩陣 3)算法小結:此算法簡單有效,由于三重循環結構緊湊,對于稠密圖,效率要高于執行|V|次Dijkstra算法。時間復雜度O(n^3)。 考慮下列變形:如(I,j)∈E則dis[I,j]初始為1,else初始為0,這樣的Floyd算法最后的最短路徑矩陣即成為一個判斷I,j是否有通路的矩陣。更簡單的,我們可以把dis設成boolean類型,則每次可以用“dis[I,j]:=dis[I,j]or(dis[I,k]and dis[k,j])”來代替算法描述中的藍色部分,可以更直觀地得到I,j的連通情況。
標簽: Floyd-Warshall Shortest Pairs Paths
上傳時間: 2013-12-01
上傳用戶:dyctj
實現N階線性方程組Ax=b逐次超松弛迭代法的通用程序
上傳時間: 2014-06-08
上傳用戶:冇尾飛鉈
// 移頻選頻原理 //Fvco=[(P*B)+A]*Frefin/R //P=32 //loop filter 100k----prescribe //R=12.8M/100K=128---Parameter1 //Fvco=頻點*2+170280 -1400 //B=Fvco/32-----------Parameter2 //A=Fvco-32*B
標簽: 100 prescribe Frefin filter
上傳時間: 2013-12-26
上傳用戶:dancnc
B樹及其B+樹的實現代碼,支持模版(數據類型,M值)
上傳時間: 2016-02-22
上傳用戶:jhksyghr