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
Summary: An example of KALMAN FILTER MATLAB Release: R13SP1 Required Products: Communications Toolbox,Signal Processing Toolbox Description: THIS PROGRAM DEMONSTRATES AN EXAMPLE OF KALMAN FILTER.
標簽: Communication Products Required Summary
上傳時間: 2016-02-12
上傳用戶:xg262122
Synthesizable FIFO Model This example describes a synthesizable implementation of a FIFO. The FIFO depth and FIFO width in bits can be modified by simply changing the value of two parameters, `FWIDTH and `FDEPTH. For this example, the FIFO depth is 4 and the FIFO width is 32 bits.
標簽: FIFO implementation Synthesizable synthesizable
上傳時間: 2016-02-12
上傳用戶:源弋弋
比較牛b的一個計算器程序,源碼在word文檔里面,
上傳時間: 2016-02-14
上傳用戶:z1191176801
A 8051 assembler .any one can learn how to write assembler in this example.and this function code has been work well for a 8051 assemble.
標簽: assembler this function example
上傳時間: 2016-02-16
上傳用戶:王小奇
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
金蘋果進銷存管理系統-是一個用C#.net編寫的非常使用而且功能強大的進銷存的B/S系統
上傳時間: 2013-12-28
上傳用戶:225588
電網月度(年度)檢修計劃圖示化智能分析 技術報告。系統設計了通過B/S模型IE瀏覽器登陸系統網站上報檢修計劃,二級單位主任直接通過網頁審批檢修計劃,實現了上報計劃流程的網絡化。
上傳時間: 2014-10-31
上傳用戶:zaizaibang
Example - 3-D Stem Plot of an FFTFor example, fast Fourier transforms are calculated at points around the unit circle on the complex plane. So, it is interesting to visualize the plot around the unit circle. Calculating the unit circle.
標簽: calculated transforms Example Fourier
上傳時間: 2013-12-17
上傳用戶:wpwpwlxwlx
實現N階線性方程組Ax=b逐次超松弛迭代法的通用程序
上傳時間: 2014-06-08
上傳用戶:冇尾飛鉈