A detailed explanation of C# 2.0 An introduction to Visual Studio 2005, a tool set for building Windows and web applications More than 200 questions and programming exercises to help you better judge your understanding of the material A greater emphasis on event handling Information on generics and generic collections
標簽: introduction explanation detailed building
上傳時間: 2013-12-14
上傳用戶:愛死愛死
Program to implement a list data structure in C++ (partial) With debug output for poor-man s animation
標簽: implement structure poor-man Program
上傳時間: 2016-02-02
上傳用戶:litianchu
可以進行曲線回歸擬合算法的四參數算法。函數為 y = (a-d)/(1+(x/c)^b) +d . ec50.m 為其主要函數
上傳時間: 2016-02-04
上傳用戶:我干你啊
本程序是完成一個函數計算器的功能,通過輸入表達式,然輸入表達的未知數,則可以計算出表達式的值來:如:a+b+c+sin(a+b),分別輸入a ,b ,c 的值,就可以計算表達式的值
上傳時間: 2016-02-05
上傳用戶:xcy122677
小信號放大器的設計 1. 放大器是射頻/微波系統的必不可少的部件。 2. 放大器有低噪聲、小信號、高增益、中功率、大功率等。 3. 放大器按工作點分有A、AB、B、C、D…等類型。 4. 放大器指標有:頻率范圍、動態范圍、增益、噪聲系數、工作效率、1dB壓縮點、三階交調等。
上傳時間: 2016-02-10
上傳用戶:ggwz258
A Numerical Photonics library written in C++. The library includes beam propagation method, coupled mode method, Bragg Gating Analysis, transfer matrix method, and vectorial Fourier Decomposition method. Very useful in simulating integrated Photonic devices
標簽: library propagation Numerical Photonics
上傳時間: 2013-12-22
上傳用戶:wendy15
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
a programme set to teach you how to use c
上傳時間: 2016-02-18
上傳用戶:zhaoq123
An object-oriented C++ implementation of Davidson method for finding a few selected extreme eigenpairs of a large, sparse, real, symmetric matrix
標簽: object-oriented implementation Davidson eigenpai
上傳時間: 2014-01-09
上傳用戶:TRIFCT
加密程序源代碼* A 變成 C,B 變成 D,a 變成 c,b 變成 d,Y 變成 A, * z 變成 b,以此類推。非字母字符不變。
上傳時間: 2013-12-28
上傳用戶:stvnash