<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>麦特客</title>
	<atom:link href="http://www.matke.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matke.com</link>
	<description>Matlab课堂</description>
	<lastBuildDate>Fri, 20 Aug 2010 16:33:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>利用MATLAB制作霓虹灯效果动画的教程</title>
		<link>http://www.matke.com/neonball/</link>
		<comments>http://www.matke.com/neonball/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 16:23:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[matlab]]></category>

		<guid isPermaLink="false">http://www.matke.com/neonball/</guid>
		<description><![CDATA[如今繁华大都市的夜色中，霓虹闪烁，煞是好看，调用MATLAB中的spinmap函数可以做出这种效果的动画，它是通过旋转颜色映像的方式来呈现这种霓虹闪烁的动画效果。spinmap函数的调用格式如下： spinmap&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; % 旋转颜色映像约5秒钟 spinmap(t)&#160;&#160;&#160;&#160;&#160; % 旋转颜色映像约t秒钟，具体时间取决于硬件 spinmap(t,inc)&#160; % 旋转颜色映像约t秒钟，并设置增量参数inc，该参数用来调整闪烁频率 spinmap(&#8216;inf&#8217;)&#160; % 不限时旋转颜色映像，若需终止，请按Ctrl+C键 【例】霓虹闪烁的球体。 源代码： sphere;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; % 绘制单位球面 axis equal;&#160;&#160;&#160;&#160; % 设置坐标显示比例相同 axis off;&#160;&#160;&#160;&#160;&#160;&#160; % 隐藏坐标轴 spinmap(20,1);&#160; % 设置增量参数为1，旋转颜色映像约20秒 逐条运行以上命令即可看到霓虹闪烁效果的球体，效果如下图： 用camorbit函数加了旋转效果如下： 来源：http://www.matlabsky.com/thread-9255-1-1.htmlMatlabsky]]></description>
			<content:encoded><![CDATA[<p>如今繁华大都市的夜色中，霓虹闪烁，煞是好看，调用MATLAB中的spinmap函数可以做出这种效果的动画，它是通过旋转颜色映像的方式来呈现这种霓虹闪烁的动画效果。spinmap函数的调用格式如下：    <br />spinmap&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; % 旋转颜色映像约5秒钟     <br />spinmap(t)&#160;&#160;&#160;&#160;&#160; % 旋转颜色映像约t秒钟，具体时间取决于硬件     <br />spinmap(t,inc)&#160; % 旋转颜色映像约t秒钟，并设置增量参数inc，该参数用来调整闪烁频率     <br />spinmap(&#8216;inf&#8217;)&#160; % 不限时旋转颜色映像，若需终止，请按Ctrl+C键     <br />【例】霓虹闪烁的球体。     <br />源代码： </p>
<ol>
<li>sphere;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; % 绘制单位球面 </li>
<li>axis equal;&#160;&#160;&#160;&#160; % 设置坐标显示比例相同 </li>
<li>axis off;&#160;&#160;&#160;&#160;&#160;&#160; % 隐藏坐标轴 </li>
<li>spinmap(20,1);&#160; % 设置增量参数为1，旋转颜色映像约20秒 </li>
</ol>
<p>逐条运行以上命令即可看到霓虹闪烁效果的球体，效果如下图：    <br /><a href="http://www.matke.com/wp-content/uploads/2010/08/NeonBall.gif"><img style="display: inline" title="利用MATLAB制作霓虹灯效果动画" alt="利用MATLAB制作霓虹灯效果动画" src="http://www.matke.com/wp-content/uploads/2010/08/NeonBall_thumb.gif" width="560" height="420" /></a> </p>
<p>用camorbit函数加了旋转效果如下：<a href="http://www.matke.com/wp-content/uploads/2010/08/NeonBall2.gif"><img style="display: inline" title="利用MATLAB制作霓虹灯效果动画" alt="利用MATLAB制作霓虹灯效果动画" src="http://www.matke.com/wp-content/uploads/2010/08/NeonBall2_thumb.gif" width="560" height="420" /></a> </p>
</p>
<p>来源：<a href="http://www.matlabsky.com/thread-9255-1-1.html">http://www.matlabsky.com/thread-9255-1-1.html</a>Matlabsky</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matke.com/neonball/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matlab计算阶乘的程序（if，for，while）</title>
		<link>http://www.matke.com/matlab-factor-function/</link>
		<comments>http://www.matke.com/matlab-factor-function/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 15:30:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[matlab]]></category>

		<guid isPermaLink="false">http://www.matke.com/?p=17</guid>
		<description><![CDATA[1、while语句版，首先建立函数并保存为jiecheng.m function sum=jiecheng(n) n=input(&#8216;please enter a positive number&#8217;); if n&#60;0 &#160;&#160;&#160; display(&#8216;输入的是负数&#8217;) else &#160;&#160; sum=1; &#160;&#160; m=1; &#160;&#160; while(m&#60;=n) &#160;&#160;&#160; sum=sum*m; &#160;&#160;&#160; m=m+1; &#160;&#160; end end 2、for语句。建立函数并保存为jiecheng2.m function sum=jiecheng2(n) n=input(&#8216;please enter a positive number&#8217;); sum=1; m=1; if (n&#60;0) &#160;&#160;&#160; display(&#8216;输入的是负数&#8217;) else&#160;&#160;&#160;&#160; if&#160; (m&#60;=n) &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; for i=1:n &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sum=sum*m; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; m=m+1; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; end &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; end end [...]]]></description>
			<content:encoded><![CDATA[<p>1、while语句版，首先建立函数并保存为jiecheng.m</p>
<p>function sum=jiecheng(n)   <br />n=input(&#8216;please enter a positive number&#8217;);    <br />if n&lt;0    <br />&#160;&#160;&#160; display(&#8216;输入的是负数&#8217;)    <br />else    <br />&#160;&#160; sum=1;    <br />&#160;&#160; m=1;    <br />&#160;&#160; while(m&lt;=n)    <br />&#160;&#160;&#160; sum=sum*m;    <br />&#160;&#160;&#160; m=m+1;    <br />&#160;&#160; end     <br />end </p>
<p>2、for语句。建立函数并保存为jiecheng2.m</p>
<p>function sum=jiecheng2(n)   <br />n=input(&#8216;please enter a positive number&#8217;);    <br />sum=1;    <br />m=1;    <br />if (n&lt;0)    <br />&#160;&#160;&#160; display(&#8216;输入的是负数&#8217;)    <br />else&#160;&#160;&#160;&#160; if&#160; (m&lt;=n)    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; for i=1:n    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sum=sum*m;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; m=m+1;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; end    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; end    <br />end </p>
<p>3、IF语句建立的函数factor.m</p>
<p>function f=factor(n)    <br />if n&lt;=1     <br />&#160;&#160; f=1;     <br />else     <br />&#160;&#160; f=factor(n-1)*n;&#160;&#160; <br />end </p>
]]></content:encoded>
			<wfw:commentRss>http://www.matke.com/matlab-factor-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matlab实现两个变量交换数值（不使用第三个变量）</title>
		<link>http://www.matke.com/matlab-exchange-two-variable-value/</link>
		<comments>http://www.matke.com/matlab-exchange-two-variable-value/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 15:18:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[matlab]]></category>

		<guid isPermaLink="false">http://www.matke.com/?p=16</guid>
		<description><![CDATA[以前一个教授在听Ｃ语言公开课时对一个老师提出来的，现在把Ｃ换成Matlab软件，看大家如何解决。 程序： syms x y x=input(&#8216;please enter a number x:&#8217;); y=input(&#8216;please enter a number y:&#8217;); x=x+y; y=x-y; x=x-y;]]></description>
			<content:encoded><![CDATA[<p>以前一个教授在听Ｃ语言公开课时对一个老师提出来的，现在把Ｃ换成Matlab软件，看大家如何解决。</p>
<p>程序：</p>
<p>syms x y    <br />x=input(&#8216;please enter a number x:&#8217;);     <br />y=input(&#8216;please enter a number y:&#8217;);     <br />x=x+y;     <br />y=x-y;     <br />x=x-y;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matke.com/matlab-exchange-two-variable-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regression using SPSS &#8211; A suburban hotel derives its gross income from its hotel and restaurant operations.</title>
		<link>http://www.matke.com/regression-using-spss-a-suburban-hotel-derives-its-gross-income-from-its-hotel-and-restaurant-operations/</link>
		<comments>http://www.matke.com/regression-using-spss-a-suburban-hotel-derives-its-gross-income-from-its-hotel-and-restaurant-operations/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 15:21:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Probability]]></category>
		<category><![CDATA[SPSS]]></category>

		<guid isPermaLink="false">http://www.matke.com/?p=14</guid>
		<description><![CDATA[A suburban hotel derives its gross income from its hotel and restaurant operations. The owners are interested in the relationship between the number of rooms occupied on a nightly basis and the revenue per day in the restaurant. Below is a sample of 25 days (Monday through Thursday) from last year showing the restaurant income [...]]]></description>
			<content:encoded><![CDATA[<p>A suburban hotel derives its gross income from its hotel and restaurant operations. The owners are interested in the relationship between the number of rooms occupied on a nightly basis and the revenue per day in the restaurant. Below is a sample of 25 days (Monday through Thursday) from last year showing the restaurant income and number of rooms occupied.<br />
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="bottom">
<p>Day</p>
</td>
<td valign="bottom">
<p>Income</p>
</td>
<td valign="bottom">
<p>Occupied</p>
</td>
</tr>
<tr>
<td valign="top">
<p>1</p>
</td>
<td valign="top">
<p>$1,452</p>
</td>
<td valign="top">
<p>23</p>
</td>
</tr>
<tr>
<td valign="top">
<p>2</p>
</td>
<td valign="top">
<p>1,361</p>
</td>
<td valign="top">
<p>47</p>
</td>
</tr>
<tr>
<td valign="top">
<p>3</p>
</td>
<td valign="top">
<p>1,426</p>
</td>
<td valign="top">
<p>21</p>
</td>
</tr>
<tr>
<td valign="top">
<p>4</p>
</td>
<td valign="top">
<p>1,470</p>
</td>
<td valign="top">
<p>39</p>
</td>
</tr>
<tr>
<td valign="top">
<p>5</p>
</td>
<td valign="top">
<p>1,456</p>
</td>
<td valign="top">
<p>37</p>
</td>
</tr>
<tr>
<td valign="top">
<p>6</p>
</td>
<td valign="top">
<p>1,430</p>
</td>
<td valign="top">
<p>29</p>
</td>
</tr>
<tr>
<td valign="top">
<p>7</p>
</td>
<td valign="top">
<p>1,354</p>
</td>
<td valign="top">
<p>23</p>
</td>
</tr>
<tr>
<td valign="top">
<p>8</p>
</td>
<td valign="top">
<p>1,442</p>
</td>
<td valign="top">
<p>44</p>
</td>
</tr>
<tr>
<td valign="top">
<p>9</p>
</td>
<td valign="top">
<p>1,394</p>
</td>
<td valign="top">
<p>45</p>
</td>
</tr>
<tr>
<td valign="top">
<p>10</p>
</td>
<td valign="top">
<p>1,459</p>
</td>
<td valign="top">
<p>16</p>
</td>
</tr>
<tr>
<td valign="top">
<p>11</p>
</td>
<td valign="top">
<p>1,399</p>
</td>
<td valign="top">
<p>30</p>
</td>
</tr>
<tr>
<td valign="top">
<p>12</p>
</td>
<td valign="top">
<p>1,458</p>
</td>
<td valign="top">
<p>42</p>
</td>
</tr>
<tr>
<td valign="top">
<p>13</p>
</td>
<td valign="top">
<p>1,537</p>
</td>
<td valign="top">
<p>54</p>
</td>
</tr>
<tr>
<td valign="top">
<p>14</p>
</td>
<td valign="top">
<p>$1,425</p>
</td>
<td valign="top">
<p>27</p>
</td>
</tr>
<tr>
<td valign="top">
<p>15</p>
</td>
<td valign="top">
<p>1,445</p>
</td>
<td valign="top">
<p>34</p>
</td>
</tr>
<tr>
<td valign="top">
<p>16</p>
</td>
<td valign="top">
<p>1,439</p>
</td>
<td valign="top">
<p>15</p>
</td>
</tr>
<tr>
<td valign="top">
<p>17</p>
</td>
<td valign="top">
<p>1,348</p>
</td>
<td valign="top">
<p>19</p>
</td>
</tr>
<tr>
<td valign="top">
<p>18</p>
</td>
<td valign="top">
<p>1,450</p>
</td>
<td valign="top">
<p>38</p>
</td>
</tr>
<tr>
<td valign="top">
<p>19</p>
</td>
<td valign="top">
<p>1,431</p>
</td>
<td valign="top">
<p>44</p>
</td>
</tr>
<tr>
<td valign="top">
<p>20</p>
</td>
<td valign="top">
<p>1,446</p>
</td>
<td valign="top">
<p>47</p>
</td>
</tr>
<tr>
<td valign="top">
<p>21</p>
</td>
<td valign="top">
<p>1,485</p>
</td>
<td valign="top">
<p>43</p>
</td>
</tr>
<tr>
<td valign="top">
<p>22</p>
</td>
<td valign="top">
<p>1,405</p>
</td>
<td valign="top">
<p>38</p>
</td>
</tr>
<tr>
<td valign="top">
<p>23</p>
</td>
<td valign="top">
<p>1,461</p>
</td>
<td valign="top">
<p>51</p>
</td>
</tr>
<tr>
<td valign="top">
<p>24</p>
</td>
<td valign="top">
<p>1,490</p>
</td>
<td valign="top">
<p>61</p>
</td>
</tr>
<tr>
<td valign="top">
<p>25</p>
</td>
<td valign="top">
<p>1,426</p>
</td>
<td valign="top">
<p>39</p>
</td>
</tr>
</tbody>
</table>
<p>Use a statistical software package to answer the following questions.</p>
<p>a. Does the breakfast revenue seem to increase as the number of occupied rooms increases? Draw a scatter diagram to support your conclusion. </p>
<p>b. Determine the coefficient of correlation between the two variables. Interpret the value. </p>
<p>c. Is it reasonable to conclude that there is a positive relationship between revenue and occupied rooms? Use the .10 significance level. </p>
<p>d. What percent of the variation in revenue in the restaurant is accounted for by the number of rooms occupied?</p>
<h5>Answer</h5>
<p>(A)</p>
<p><a href="http://www.matke.com/wp-content/uploads/2010/07/OUTPUT0.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="OUTPUT0" border="0" alt="OUTPUT0" src="http://www.matke.com/wp-content/uploads/2010/07/OUTPUT0_thumb.jpg" width="624" height="500" /></a> </p>
<p> (B)   <br />r = 0.44, there is a WEAK positive correlation.   <br />(C)   <br />df = n-2 = 25-2 = 23   <br />α = 0.05   <br />one-tailed critical value T = 1.319   <br />Test statistic T = r*Sqrt[(n-2)/(1-r²)] = 0.44*Sqrt[(25-2)/(1-0.44²)] = 2.35   <br />Conclusion: Since 2.35 &gt; 1.319 we conclude that there is a positive relationship between the variables.   <br />(D)   <br />r² = 0.44² = 0.1936, so approximately 19% of the variation in revenue is explained by the variation in the number of rooms occupied.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.matke.com/regression-using-spss-a-suburban-hotel-derives-its-gross-income-from-its-hotel-and-restaurant-operations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prove that square root of three is an irrational number.</title>
		<link>http://www.matke.com/prove-that-square-root-of-three-is-an-irrational-number/</link>
		<comments>http://www.matke.com/prove-that-square-root-of-three-is-an-irrational-number/#comments</comments>
		<pubDate>Mon, 10 May 2010 15:09:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Algebra]]></category>
		<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[Mathematic]]></category>

		<guid isPermaLink="false">http://www.matke.com/?p=11</guid>
		<description><![CDATA[via The Irrationality of Problem: Prove that is an irrational number. Solution: The number, , is irrational, ie., it cannot be expressed as a ratio of integers a and b. To prove that this statement is true, let us assume that is rational so that we may write = a/b&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 1. for a and b [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.grc.nasa.gov/WWW/K-12/Numbers/Math/Mathematical_Thinking/irrationality_of_3.htm">via</a><br />
<blockquote>
<h4>The Irrationality of <img height="14" alt="square root of three" src="http://www.grc.nasa.gov/WWW/K-12/Numbers/Math/Mathematical_Thinking/three.GIF" width="21" align="bottom" /></h4>
<p><b><u>Problem</u>:</b>       <br />Prove that <img height="14" alt="square root of three" src="http://www.grc.nasa.gov/WWW/K-12/Numbers/Math/Mathematical_Thinking/three.GIF" width="21" align="bottom" /> is an irrational number.</p>
<p><b><u>Solution</u>: </b>      <br />The number, <img height="14" alt="square root of three" src="http://www.grc.nasa.gov/WWW/K-12/Numbers/Math/Mathematical_Thinking/three.GIF" width="21" align="bottom" />, is irrational, ie., it cannot be expressed as a ratio of integers a and b. To prove that this statement is true, let us assume that <img height="14" alt="square root of three" src="http://www.grc.nasa.gov/WWW/K-12/Numbers/Math/Mathematical_Thinking/three.GIF" width="21" align="bottom" /> is rational so that we may write</p>
<p><img height="14" alt="square root of three" src="http://www.grc.nasa.gov/WWW/K-12/Numbers/Math/Mathematical_Thinking/three.GIF" width="21" align="bottom" /> = a/b&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 1.</p>
<p>for a and b = any two integers. We must then show that no two such integers can be found. We begin by squaring both sides of <a href="http://www.grc.nasa.gov/WWW/K-12/Numbers/Math/Mathematical_Thinking/irrationality_of_3.htm#1.">eq. 1</a>:</p>
<p>3 = a<sup>2</sup>/b<sup>2&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </sup>2.</p>
<p>or </p>
<p>3b<sup>2</sup> = a<sup>2&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </sup>2a.</p>
<p>If b is odd, then b<sup>2</sup> is odd; in this case, a<sup>2</sup> and a are also odd. Similarly, if b is even, then b<sup>2</sup>, a<sup>2</sup>, and a are even. Since any choice of even values of a and b leads to a ratio a/b that can be reduced by canceling a common factor of 2, we must assume that a and b are odd, and that the ratio a/b is already reduced to smallest possible terms. With a and b both odd, we may write</p>
<p>a = 2m + 1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 3.</p>
<p>and</p>
<p>b = 2n +1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 4.</p>
<p>where we require m and n to be integers (to ensure integer values of a and b). When these expressions are substituted into <a href="http://www.grc.nasa.gov/WWW/K-12/Numbers/Math/Mathematical_Thinking/irrationality_of_3.htm#2a.">eq. 2a</a>, we obtain</p>
<p>3(4n<sup>2</sup> + 4n + 1) = 4m<sup>2</sup> + 4m + 1&#160;&#160;&#160;&#160; 5.</p>
<p>Upon performing some algebra, we acquire the further expression</p>
<p>6n<sup>2</sup> + 6n + 1 = 2(m<sup>2</sup> + m)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 6.</p>
<p>The Left Hand Side of eq. 3a is an odd integer. The Right Hand Side, on the other hand, is an even integer. There are no solutions for eq. 3a. Therefore, integer values of a and b which satisfy the relationship <img height="14" alt="square root of three" src="http://www.grc.nasa.gov/WWW/K-12/Numbers/Math/Mathematical_Thinking/three.GIF" width="21" align="bottom" /> = a/b cannot be found. We are forced to conclude that <img height="14" alt="square root of three" src="http://www.grc.nasa.gov/WWW/K-12/Numbers/Math/Mathematical_Thinking/three.GIF" width="21" align="bottom" /> is irrational.</p>
</blockquote>
<p>The other way: from Yahoo anser</p>
<p>We prove that by contradiction.    <br />This means, we suppose √3 is rational and then get to something that contradicts this assumption.     <br />If √3 is rational, we can express it as a/b, a fraction in its lowest terms (i.e., gcd(a,b) = 1). Also, b is not 1, because that would mean √3 is an integer, which it obviously is not.     <br />Now square both sides.     <br />√3 = a/b     <br />3 = a²/b²     <br />since gcd(a,b) = 1, then gcd(a²,b²) = 1 (has to be).     <br />But from 3 = a²/b² we can express a² = 3b².     <br />So a²/b² = 3b²/b² -&gt; now this fraction is obviously NOT in its lowest terms (remember, b is not 1) -&gt; hence the contradiction.     <br />=&gt; √3 is not rational. It is irrational.</p>
<p>The third way:like sqrt two</p>
<pre>sqrt (3) = m/n   (a fraction, reduced to its lowest terms)
     3 = m²/n²&#160;&#160; m² = 3n²   (So, m is a multiple of 3, call it 3q)
     9q² = 3n²&#160;&#160; 3q² = n²    (So, n is a multiple of 3)</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.matke.com/prove-that-square-root-of-three-is-an-irrational-number/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coins, dice, probability</title>
		<link>http://www.matke.com/coins-dice-probability/</link>
		<comments>http://www.matke.com/coins-dice-probability/#comments</comments>
		<pubDate>Sun, 09 May 2010 13:40:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Probability]]></category>

		<guid isPermaLink="false">http://www.matke.com/?p=9</guid>
		<description><![CDATA[1)Three dice are thrown simultaneously. The probability of obtaining a sum of 6 is? 1)1/24&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 2)5/108&#160;&#160;&#160;&#160;&#160;&#160;&#160; 3)1/54&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 4)7/216 2)A coin is tossed 3 times. The probability of getting head and tail alternately is? 1)1/6&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 2)1/8&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 3)1/4&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 4)1/3 3)Three dice are thrown simultaneously. The probability of obtaining a multiple of 5? 1)1/36&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 2)5/108&#160;&#160;&#160;&#160;&#160;&#160;&#160; 3)1/54&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 4)43/216 Answer： [...]]]></description>
			<content:encoded><![CDATA[<h3>1)Three dice are thrown simultaneously. The probability of obtaining a sum of 6 is?</h3>
<p>1)1/24&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 2)5/108&#160;&#160;&#160;&#160;&#160;&#160;&#160; 3)1/54&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 4)7/216</p>
<h3>2)A coin is tossed 3 times. The probability of getting head and tail alternately is?</h3>
<p>1)1/6&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 2)1/8&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 3)1/4&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 4)1/3</p>
<h3>3)Three dice are thrown simultaneously. The probability of obtaining a multiple of 5?</h3>
<p>1)1/36&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 2)5/108&#160;&#160;&#160;&#160;&#160;&#160;&#160; 3)1/54&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 4)43/216</p>
<p>Answer：</p>
<p>1）</p>
<p>6=1+1+4，3 possible outcomes    <br />6=1+2+3，6possible outcomes     <br />6=2+2+2，1possible outcomes     <br />(3+6+1)/6*6*6=10/216 = 5/108</p>
<p>2）Here are the possible outcomes:    <br />HHH, HHT, HTH, HTT, TTT, TTH, THT, THH     <br />There are two outcomes that satisfy the alternate condition HTH and THT. Head and tail come alternatively in these two outcomes,     <br />Total possibilities=8     <br />Number of requirea outcome=2     <br />Probability=2/8=1/4     <br />So number 3) is correct answer</p>
<p>3/）</p>
<p>Maximum of three dice and 18    <br />So that may occur in multiples of 5 to 5,10,15     <br />As and when the 5: 5 = 1 +1 +3 will make arrangement with three kinds of 113     <br />5 = 1 + 2 + 2 will be ordered to do 122 with three kinds of     <br />And the time when 10 of 10 = 1 +3 +6 ordered to do 136 with 6     <br />10 = 1 +4 +5 ordered to do 145 with 6     <br />10 = 2 +2 +6 there are three kinds of ordered to do 226     <br />10 = 2 +3 +5 ordered to do 235 with 6     <br />10 = 2 +4 +4 there are three kinds of ordered to do 244     <br />10 = 3 +3 +4 there are three kinds of ordered to do 334     <br />When and when 15 = 3 +6 +6 15 366 do have three kinds of arrangement     <br />15 = 4 +5 +6 ordered to do 456 with 6     <br />15 = 5 +5 +5 555 ordered to do only one     <br />In summary there and in multiples of 5 3 +3 +3 +6 +6 +6 +6 +3 +3 +3 +1 = 43     <br />The vote occurred a total of three dice combination of a 6 * 6 * 6 = 216     <br />The probability is 43/216 = 43/216</p>
<p>right or wrong?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matke.com/coins-dice-probability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prove that square root of two is an irrational number.</title>
		<link>http://www.matke.com/sqrt2-is-an-irrational/</link>
		<comments>http://www.matke.com/sqrt2-is-an-irrational/#comments</comments>
		<pubDate>Sun, 09 May 2010 11:31:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Algebra]]></category>
		<category><![CDATA[Mathematics]]></category>

		<guid isPermaLink="false">http://www.matke.com/?p=7</guid>
		<description><![CDATA[Here&#8217;s the proof. We start by assuming the square root of two, shown as sqrt(2) here, is equal to some fraction m/n. We intend to contradict this assumption: sqrt (2) = m/n (a fraction, reduced to its lowest terms) 2 = m²/n²&#160;&#160; m² = 2n² (So, m is a multiple of 2, call it 2q) [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the proof. We start by assuming the square root of two, shown as sqrt(2) here, is equal to some fraction <b>m/n</b>. We intend to contradict this assumption: </p>
<pre>sqrt (2) = m/n   (a fraction, reduced to its lowest terms)
     2 = m²/n²&#160;&#160; m² = 2n²   (So, m is a multiple of 2, call it 2q)
     4q² = 2n²&#160;&#160; 2q² = n²    (So, n is a multiple of 2)</pre>
<p>So, both <b>m</b> and <b>n</b> are multiples of two, which is impossible, because <b>m/n</b> was reduced to its lowest terms. So, we have proved that the square root of two cannot be expressed as a fraction, i.e. it is irrational. <a href="http://www.jimloy.com/algebra/irration.htm">via</a>.Note:There are other methods of proof.</p>
<p>It follows that 2 = a<sup>2</sup>/b<sup>2</sup>,&#160; or&#160; a<sup>2</sup> = 2 * b<sup>2</sup>. If we substitute a = 2k into the original equation 2 = a<sup>2</sup>/b<sup>2</sup>, this is what we get:</p>
<p>2= (2k)<sup>2</sup>/b<sup>2</sup></p>
<p>2= 4k<sup>2</sup>/b<sup>2</sup></p>
<p>2*b<sup>2</sup>= 4k<sup>2</sup></p>
<p>b<sup>2</sup>= 2k<sup>2</sup>.</p>
<p>This means b<sup>2</sup> is even, so we obtain the result.<a href="http://www.homeschoolmath.net/teaching/proof_square_root_2_irrational.php">via</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matke.com/sqrt2-is-an-irrational/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MATLAB Toolboxes</title>
		<link>http://www.matke.com/matlab-toolboxes/</link>
		<comments>http://www.matke.com/matlab-toolboxes/#comments</comments>
		<pubDate>Sat, 08 May 2010 12:51:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[matlab]]></category>
		<category><![CDATA[toolboxes]]></category>

		<guid isPermaLink="false">http://www.matke.com/?p=5</guid>
		<description><![CDATA[New Classification toolbox&#160; http://stuff.mit.edu/afs/sipb.mit.edu/user/arolfe/matlab/ MATLAB codes for implementation of both OOMP and BOOMP are available http://www.ncrg.aston.ac.uk/Projects/BiOrthog IDEAL (formerly LANS) Pattern Recognition Toolbox Kui-yu Chang / LANS Matlab Toolbox http://www.lans.ece.utexas.edu/~lans/lans/ Smoothed Data Histogram Toolbox for Matlab / Cluster Visualization with Self-Organizing Maps http://www.ofai.at/~elias.pampalk/sdh/ Data description toolbox http://ida.first.fhg.de/~davidt/dd_tools.html The Lazy Learning Toolbox for Use with MATLAB Mauro [...]]]></description>
			<content:encoded><![CDATA[<p>New</p>
<ul>
<li>Classification toolbox&#160; <br /><a href="http://stuff.mit.edu/afs/sipb.mit.edu/user/arolfe/matlab/">http://stuff.mit.edu/afs/sipb.mit.edu/user/arolfe/matlab/</a> </li>
<li>MATLAB codes for implementation of both OOMP and BOOMP are available      <br /><a href="http://www.ncrg.aston.ac.uk/Projects/BiOrthog">http://www.ncrg.aston.ac.uk/Projects/BiOrthog</a> </li>
<li>
<p>IDEAL (formerly LANS) Pattern Recognition Toolbox        <br />Kui-yu Chang / LANS Matlab Toolbox         <br /><a href="http://www.lans.ece.utexas.edu/%7Elans/lans/">http://www.lans.ece.utexas.edu/~lans/lans/</a></p>
</li>
<li>
<p>Smoothed Data Histogram Toolbox for Matlab / Cluster Visualization with Self-Organizing Maps        <br /><a href="http://www.ofai.at/%7Eelias.pampalk/sdh/">http://www.ofai.at/~elias.pampalk/sdh/</a></p>
</li>
<li>
<p>Data description toolbox        <br /><a href="http://ida.first.fhg.de/%7Edavidt/dd_tools.html">http://ida.first.fhg.de/~davidt/dd_tools.html</a></p>
</li>
<li>
<p>The Lazy Learning Toolbox for Use with MATLAB        <br />Mauro Birattari and Gianluca Bontempi (IRIDIA Universit� Libre de Bruxelles Brussels, Belgium)         <br /><a href="http://iridia0.ulb.ac.be/%7Elazy/lazy.matlab.html">http://iridia0.ulb.ac.be/%7Elazy/lazy.matlab.html</a></p>
</li>
<li>Fast Mobius Transforms      <br /><a href="http://iridia.ulb.ac.be/%7Epsmets/#G">http://iridia.ulb.ac.be/~psmets/#G</a> </li>
<li>
<p>Options Matlab        <br /><a href="http://www.geodise.org/documentation/OptionsMatlab/html/index.htm">http://www.geodise.org/documentation/OptionsMatlab/html/index.htm</a></p>
</li>
<li>
<p>Graph Layout Generation Package- This package contains utility functions for drawing small directed or undirected networks (e.g. textbook examples) using Matlab.        <br /><a href="http://staff.science.uva.nl/%7Ecemgil/matlab/layout.html">http://staff.science.uva.nl/~cemgil/matlab/layout.html</a></p>
</li>
<li>
<p>NLSSOL from Stanford Systems Optimization Laboratory,        <br /><a href="http://tomlab.biz/products/npsol/nlssol.php">http://tomlab.biz/products/npsol/nlssol.php</a></p>
</li>
<li>
<p><a href="http://www-dii.ing.unisi.it/%7Egiorgetti/users.html">http://www-dii.ing.unisi.it/~giorgetti/users.html          <br /></a></p>
</li>
<li>
<p><strong>Hybrid Toolbox</strong>         <br />Author: Alberto Bemporad         <br />The Hybrid Toolbox is a Matlab/Simulink toolbox for modeling and simulating hybrid dynamical systems, for designing and simulating model predictive controllers for linear and for hybrid systems subject to constraints, and for generating equivalent piecewise linear control laws that can be directly embedded as C-code in real-time applications.         <br />Interfaces used: GLPKMEX, CPLEXMEX, MEXPRESS</p>
</li>
<li>
<p><strong>Multiparametric Toobox          <br /></strong>By M. Kvasnica, P. Grieder and M. Baotic         <br /><a href="http://control.ee.ethz.ch/%7Empt/">http://control.ee.ethz.ch/~mpt/</a>         <br />The Multi-Parametric Toolbox (MPT) is a free Matlab toolbox for design, analysis and deployment of optimal controllers for constrained linear and hybrid systems. Efficiency of the code is guaranteed by the extensive library of algorithms from the field of computational geometry and multi-parametric optimization. Interfaces used: GLPKMEX, MEXPRESS, CPLEXMEX</p>
</li>
<li>
<p><strong>YALMIP          <br /></strong><strong>By Johan L鰂berg          <br /></strong><a href="http://control.ee.ethz.ch/%7Ejoloef/yalmip.php">http://control.ee.ethz.ch/~joloef/yalmip.php</a>         <br />YALMIP is a MATLAB toolbox for rapid prototyping of optimization problems. The package initially focused on semi-definite programming, but the latest release extends this scope significantly. YALMIP can now be used for convex linear, quadratic, second order cone and semidefinite programming, as well as for non-convex semi-definite programming, mixed integer, multi-parametric and geometric programming. In addition to this, YALMIP supports a novel feature called automatic dualization which helps the user to derive the (symbolic) dual of general convex cone programs. </p>
</li>
<li>
<p><strong>Kernel Density Estimation Toolbox </strong>        <br /><a href="http://ssg.mit.edu/%7Eihler/code/">http://ssg.mit.edu/~ihler/code/</a></p>
</li>
<li>Toolbox for complex systems      <br /><a href="http://tocsy.agnld.uni-potsdam.de">http://tocsy.agnld.uni-potsdam.de</a> </li>
<li>Matlog: Logistics Engineering Matlab Toolbox      <br /><a href="http://www.ie.ncsu.edu/kay/matlog/">http://www.ie.ncsu.edu/kay/matlog/</a> </li>
<li>ENTOOL version 1.0      <br /><a href="http://chopin.zet.agh.edu.pl/%7Ewichtel/index.html">http://chopin.zet.agh.edu.pl/~wichtel/index.html</a> </li>
<li>MATLAB Kriging Toolbox 4.0.      <br /><a href="http://www.ai-geostats.org/software/Geostats_software/MATLAB_KRIGING_TOOLBOX.htm">http://www.ai-geostats.org/software/Geostats_software/MATLAB_KRIGING_TOOLBOX.htm</a> </li>
<li>MATLAB Krigeage Toolbox Introduction for Version 3      <br /><a href="http://globec.whoi.edu/software/kriging/V3/intro_v3.html">http://globec.whoi.edu/software/kriging/V3/intro_v3.html</a> </li>
<li>Toolbox which includes the EM algorithm.&#160; <br /><a href="http://www.spatial-econometrics.com/">http://www.spatial-econometrics.com/</a> </li>
<li>
<p>GEOXP A Matlab Toolbox for Exploratory Spatial Analysis        <br /><a href="http://www.univ-tlse1.fr/GREMAQ/Statistique/geoxppage.htm">http://www.univ-tlse1.fr/GREMAQ/Statistique/geoxppage.htm</a>         <br />Doc: <a href="http://www.univ-tlse1.fr/GREMAQ/Statistique/geoxppage.htm">http://www.univ-tlse1.fr/GREMAQ/Statistique/geoxppage.htm</a></p>
</li>
<li>
<p>The HFRC toolbox is designed to import, process and manipulate HF Radar data in a relatively easy and consistent way        <br /><a href="http://erizo.ucdavis.edu/%7Edmk/software/hfrc/hfrc.html">http://erizo.ucdavis.edu/~dmk/software/hfrc/hfrc.html</a></p>
</li>
<li>
<p>WFDB library subset for Matlab/Octave        <br /><a href="http://www.physionet.org/physiotools/matlab/wfdb/">http://www.physionet.org/physiotools/matlab/wfdb/</a></p>
</li>
<li>
<p>DCPR&#160; <br />Jang&#160; <br /><a href="http://neural.cs.nthu.edu.tw/jang/matlab/toolbox/DCPR/">http://neural.cs.nthu.edu.tw/jang/matlab/toolbox/DCPR/</a></p>
</li>
<li>
<p>Andreas Wiegmann / Matlab Movies for Windows        <br /><a href="http://familie-wiegmann.de/ALWsMMs/pc.html">http://familie-wiegmann.de/ALWsMMs/pc.html</a></p>
</li>
<li>
<p>ZSM (zero sum multinomial)        <br /><a href="http://mcgillb.user.msu.edu/zsmcode.html">http://mcgillb.user.msu.edu/zsmcode.html</a></p>
</li>
<li>
<p>Binaural-modeling software for MATLAB/Windows        <br /><a href="http://www.lifesci.sussex.ac.uk/home/Michael_Akeroyd/download2.html">http://www.lifesci.sussex.ac.uk/home/Michael_Akeroyd/download2.html</a></p>
</li>
<li>
<p>BOOTSTRAP MATLAB TOOLBOX        <br /><a href="http://www.csp.curtin.edu.au/downloads/bootstrap_toolbox.html">http://www.csp.curtin.edu.au/downloads/bootstrap_toolbox.html</a></p>
</li>
<li>The DSS package for MATLAB      <br />DSS Matlab package contains algorithms for performing linear, deflation and symmetric DSS.       <br /><a href="http://www.cis.hut.fi/projects/dss/package/">http://www.cis.hut.fi/projects/dss/package/</a> </li>
<li>Psychtoolbox      <br /><a href="http://www.psychtoolbox.org/download.html">http://www.psychtoolbox.org/download.html</a> </li>
<li>Multisurface Method Tree with MATLAB      <br /><a href="http://www.cs.wisc.edu/%7Eolvi/uwmp/msmt.html">http://www.cs.wisc.edu/~olvi/uwmp/msmt.html</a> </li>
<li>A Matlab Toolbox for every single topic !      <br /><a href="http://stommel.tamu.edu/%7Ebaum/toolboxes.html">http://stommel.tamu.edu/~baum/toolboxes.html</a>       <br />eg. BrainStorm &#8211; MEG and EEG data visualization and processing </li>
<li>CLAWPACK is a software package designed to compute numerical solutions to hyperbolic partial differential equations using a wave propagation approach      <br /><a href="http://www.amath.washington.edu/%7Eclaw/">http://www.amath.washington.edu/~claw/</a> </li>
<li>DIPimage &#8211; Image Processing Toolbox </li>
<li>PRTools &#8211; Pattern Recognition Toolbox (+ Neural Networks) </li>
<li>NetLab &#8211; Neural Network Toolbox </li>
<li>FSTB &#8211; Fuzzy Systems Toolbox </li>
<li>Fusetool &#8211; Image Fusion Toolbox      <br /><a href="http://www.metapix.de/toolbox.htm">http://www.metapix.de/toolbox.htm</a> </li>
<li>WAVEKIT &#8211; Wavelet Toolbox </li>
<li>Gat &#8211; Genetic Algorithm Toolbox </li>
<li>TSTOOL is a MATLAB software package for nonlinear time series analysis.      <br />TSTOOL can be used for computing: Time-delay reconstruction, Lyapunov exponents, Fractal dimensions, Mutual information, Surrogate data tests, Nearest neighbor statistics, Return times, Poincare sections, Nonlinear prediction       <br /><a href="http://www.physik3.gwdg.de/tstool/">http://www.physik3.gwdg.de/tstool/</a> </li>
<li>MATLAB / Data description toolbox&#160; <br />A Matlab toolbox for data description, outlier and novelty detection&#160; <br />March 26, 2004 &#8211; D.M.J. Tax&#160; <br /><a href="http://www-ict.ewi.tudelft.nl/%7Edavidt/dd_tools/dd_manual.html">http://www-ict.ewi.tudelft.nl/~davidt/dd_tools/dd_manual.html</a> </li>
<li>MBE      <br /><a href="http://www.pmarneffei.hku.hk/mbetoolbox/">http://www.pmarneffei.hku.hk/mbetoolbox/</a> </li>
<li>Betabolic network toolbox for Matlab&#160; <br /><a href="http://www.molgen.mpg.de/%7Elieberme/pages/network_matlab.html">http://www.molgen.mpg.de/~lieberme/pages/network_matlab.html</a> </li>
<li>Pharmacokinetics toolbox for Matlab&#160; <br /><a href="http://page.inf.fu-berlin.de/%7Elieber/seiten/pbpk_toolbox.html">http://page.inf.fu-berlin.de/~lieber/seiten/pbpk_toolbox.html</a> </li>
<li>
<p>The Spider        <br />The spider is intended to be a complete object orientated environment for machine learning in Matlab. Aside from easy use of base learning algorithms, algorithms can be plugged together and can be compared with, e.g model selection, statistical tests and visual plots. This gives all the power of objects (reusability, plug together, share code) but also all the power of Matlab for machine learning research.         <br /><a href="http://www.kyb.tuebingen.mpg.de/bs/people/spider/index.html">http://www.kyb.tuebingen.mpg.de/bs/people/spider/index.html</a></p>
</li>
<li>
<p>Schwarz-Christoffel Toolbox        <br /><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=1316&amp;objectType=file#">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=1316&amp;objectType=file#</a></p>
</li>
<li>XML Toolbox&#160; <br /><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=4278&amp;objectType=file">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=4278&amp;objectType=file</a> </li>
<li>FIR/TDNN Toolbox for MATLAB&#160; <br />Beta version of a toolbox for FIR (Finite Impulse Response) and TD (Time Delay) Neural Networks.&#160; <br /><a href="http://www.cs.utep.edu/interval-comp/dagstuhl.03/oish.pdf">http://www.cs.utep.edu/interval-comp/dagstuhl.03/oish.pdf</a> </li>
</ul>
<h6><a name="Misc.">Misc.</a></h6>
<ul>
<li>
<p><a href="http://www.dcsc.tudelft.nl/Research/Software/index.html">http://www.dcsc.tudelft.nl/Research/Software/index.html</a></p>
</li>
</ul>
<h6><a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#Astronomy" name="Audio">Astronomy</a></h6>
<ul>
<li>
<p>Saturn and Titan trajectories &#8230; MALTAB astronomy        <br /><a href="http://sprg.ssl.berkeley.edu/%7Eabrecht/Matlab-codes/">http://sprg.ssl.berkeley.edu/~abrecht/Matlab-codes/</a></p>
</li>
</ul>
<p><a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#Audio" name="Audio">Audio </a></p>
<ul>
<li>
<p>PQevalAudio [options] AFileR AFileT        <br /><a href="http://www.tsp.ece.mcgill.ca/MMSP/Documents/Software/Packages/AFsp/PQevalAudio.html">http://www.tsp.ece.mcgill.ca/MMSP/Documents/Software/Packages/AFsp/PQevalAudio.html</a></p>
</li>
<li>
<p>TTSBOX: A MATLAB TOOLBOX FOR TEACHING TEXT-TO-SPEECH SYNTHESIS        <br /><a href="http://tcts.fpms.ac.be/publications/papers/2005/ICASSP05_tdmc.pdf">http://tcts.fpms.ac.be/publications/papers/2005/ICASSP05_tdmc.pdf</a></p>
</li>
<li>MA Toolbox for Matlab Implementing Similarity Measures for Audio      <br /><a href="http://www.oefai.at/%7Eelias/ma/index.html">http://www.oefai.at/~elias/ma/index.html</a> </li>
<li>
<p>MAD -&#160; Matlab Auditory Demonstrations<a href="http://www.dcs.shef.ac.uk/%7Emartin/MAD/docs/mad.htm">          <br />http://www.dcs.shef.ac.uk/~martin/MAD/docs/mad.htm</a></p>
</li>
<li>
<p>Music Analysis &#8211; Toolbox for Matlab : Feature Extraction from Raw Audio Signals for Content-Based Music Retrieval        <br /><a href="http://www.ai.univie.ac.at/%7Eelias/ma/">http://www.ai.univie.ac.at/~elias/ma/</a></p>
</li>
<li>
<p>WarpTB &#8211; Matlab Toolbox for Warped DSP        <br />By Aki H鋜m� and Matti Karjalainen<a href="http://www.acoustics.hut.fi/software/warp/">          <br />http://www.acoustics.hut.fi/software/warp/</a></p>
</li>
<li>
<p>MATLAB-related Software<a href="http://www.dpmi.tu-graz.ac.at/%7Eschloegl/matlab/">          <br />http://www.dpmi.tu-graz.ac.at/~schloegl/matlab/</a></p>
</li>
<li>
<p>Biomedical Signal data formats (EEG machine specific file formats with Matlab import routines)        <br /><a href="http://www.dpmi.tu-graz.ac.at/%7Eschloegl/matlab/eeg/">http://www.dpmi.tu-graz.ac.at/~schloegl/matlab/eeg/          <br /></a></p>
</li>
<li>
<p>MPEG Encoding library for MATLAB Movies (Created by <a href="mailto:dfoti@mathworks.com">David Foti</a>)         <br />It enables MATLAB users to read (<a href="ftp://ftp.mathworks.com/pub/contrib/v5/graphics/mpgread/">MPGREAD</a>) or write (<a href="ftp://ftp.mathworks.com/pub/contrib/v5/graphics/mpgwrite/">MPGWRITE</a>) MPEG movies. That should help Video Quality project.</p>
</li>
<li>
<p>Octave by&#160; Christophe COUVREUR (Generates normalized A-weigthing, C-weighting, octave and one-third-octave digital filters)        <br /><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectType=file&amp;objectId=69">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectType=file&amp;objectId=69</a></p>
</li>
<li>
<p>Source Coding MATLAB Toolbox        <br /><a href="http://www.ece.umn.edu/users/kieffer/programs.html">http://www.ece.umn.edu/users/kieffer/programs.html</a></p>
</li>
</ul>
<p><a name="BMI">Bio Medical Informatics</a> (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>NUTMEG: Neurodynamic Utility Toolbox for MEG        <br /><a href="http://tempest.ucsf.edu/%7Esarang/nutmeg/">http://tempest.ucsf.edu/~sarang/nutmeg/</a></p>
</li>
<li>
<p>CGH-Plotter: MATLAB Toolbox for CGH-data Analysis        <br />Code: <a href="http://sigwww.cs.tut.fi/TICSP/CGH-Plotter/">http://sigwww.cs.tut.fi/TICSP/CGH-Plotter/</a>         <br />Poster: <a href="http://sigwww.cs.tut.fi/TICSP/CSB2003/Posteri_CGH_Plotter.pdf">http://sigwww.cs.tut.fi/TICSP/CSB2003/Posteri_CGH_Plotter.pdf</a></p>
</li>
<li>
<p>The Brain Imaging Software Toolbox        <br /><a href="http://www.bic.mni.mcgill.ca/software/">http://www.bic.mni.mcgill.ca/software/</a></p>
</li>
<li>
<p>MRI Brain Segmentation        <br /><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=4879">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=4879</a></p>
</li>
</ul>
<p><a name="Chemometrics">Chemometrics</a> (providing PCA) (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>Matlab Molecular Biology &amp; Evolution Toolbox        <br />(Toolbox Enables Evolutionary Biologists to Analyze and View DNA and Protein Sequences)         <br />James J. Cai&#160; <br /><a href="http://www.pmarneffei.hku.hk/mbetoolbox/">http://www.pmarneffei.hku.hk/mbetoolbox/</a></p>
</li>
<li>
<p>Toolbox provided by Prof. Massart research group        <br /><a href="http://minf.vub.ac.be/%7Efabi/publiek/">http://minf.vub.ac.be/~fabi/publiek/          <br /></a></p>
</li>
<li>
<p>Useful collection of routines from Prof age smilde research group        <br /><a href="http://www-its.chem.uva.nl/research/pac">http://www-its.chem.uva.nl/research/pac          <br /></a></p>
</li>
<li>
<p>Multivariate Toolbox written by Rune Mathisen        <br /><a href="http://www.bitjungle.com/%7Emvartools/index.html">http://www.bitjungle.com/~mvartools/index.html          <br /></a></p>
</li>
<li>
<p>Matlab code and datasets<a href="http://www.acc.umu.se/%7Etnkjtg/chemometrics/dataset.html">          <br />http://www.acc.umu.se/~tnkjtg/chemometrics/dataset.html</a></p>
</li>
</ul>
<p><a name="Chaos">Chaos </a>(<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>Chaotic Systems Toolbox <a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=1597&amp;objectType=file#">         <br />http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=1597&amp;objectType=file#</a></p>
</li>
<li>
<p>HOSA Toolbox        <br /><a href="http://www.mathworks.nl/matlabcentral/fileexchange/loadFile.do?objectId=3013&amp;objectType=file">http://www.mathworks.nl/matlabcentral/fileexchange/loadFile.do?objectId=3013&amp;objectType=file</a></p>
</li>
</ul>
<h6>Chemistry (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </h6>
<ul>
<li>
<p>MetMAP -&#160; (Metabolical Modeling, Analysis and oPtimization alias Met. M. A. P.)        <br /><a href="http://webpages.ull.es/users/sympbst/pag_ing/pag_metmap/index.htm">http://webpages.ull.es/users/sympbst/pag_ing/pag_metmap/index.htm</a></p>
</li>
<li>
<p>DoseLab &#8211; A set of software programs for quantitative comparison of measured and computed radiation dose distributions        <br /><a href="http://doselab.sourceforge.net">http://doselab.sourceforge.net</a></p>
</li>
<li>
<p>GenBank Overview        <br /><a href="http://www.ncbi.nlm.nih.gov/Genbank/GenbankOverview.html">http://www.ncbi.nlm.nih.gov/Genbank/GenbankOverview.html</a>         <br />Matlab: <a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=1139">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=1139</a></p>
</li>
</ul>
<h6>Classification</h6>
<p> <a name="Control"></a>
<ul><a name="Control"></a>
<li><a name="Control"></a>
<p><a name="Control">Belief Functions and Pattern Recognition          <br />T. Denoeux and collaborators           <br /></a><a href="http://www.hds.utc.fr/%7Etdenoeux/software.htm">http://www.hds.utc.fr/~tdenoeux/software.htm</a><a name="Control">          <br /></a></p>
</li>
</ul>
<p> <a name="Control"></a><br />
<h6><a name="Control">Coding</a> (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>)&#160; </h6>
<ul>
<li>
<p>Code for the estimation of Scaling Exponents        <br /><a href="http://www.cubinlab.ee.mu.oz.au/%7Edarryl/secondorder_code.html">http://www.cubinlab.ee.mu.oz.au/~darryl/secondorder_code.html</a></p>
</li>
</ul>
<p><a name="Control">Control</a> (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>Control Tutorial for Matlab <a href="http://www.engin.umich.edu/group/ctm/">         <br />http://www.engin.umich.edu/group/ctm/</a></p>
</li>
</ul>
<p><a name="Comms">Communications</a> (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>ADSL Toolbox for MATLAB        <br /><a href="http://www.lysator.liu.se/%7E/backstig/exjobb.html">http://www.lysator.liu.se/~/backstig/exjobb.html</a></p>
</li>
<li>
<p>Channel Learning Architecture toolbox        <br />(This Matlab toolbox is a supplement to the article &quot;HiperLearn: A High Performance Learning Architecture&quot;)         <br /><a href="http://www.isy.liu.se/cvl/Projects/hiperlearn/">http://www.isy.liu.se/cvl/Projects/hiperlearn/</a></p>
</li>
<li>
<p>Source Coding MATLAB Toolbox        <br /><a href="http://www.ece.umn.edu/users/kieffer/programs.html">http://www.ece.umn.edu/users/kieffer/programs.html</a></p>
</li>
<li>
<p>TCP/UDP/IP Toolbox 2.0.4        <br /><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=345&amp;objectType=file">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=345&amp;objectType=file</a></p>
</li>
<li>
<p>Home Networking Basis: Transmission Environments and Wired/Wireless Protocols        <br />Walter Y. Chen         <br /><a href="http://www.mathworks.com/support/books/book5295.jsp?category=new&amp;language=-1">http://www.mathworks.com/support/books/book5295.jsp?category=new&amp;language=-1</a>         <br />MATLAB M-files and Simulink models&#160; <br /><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=3834&amp;objectType=file">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=3834&amp;objectType=file          <br /></a></p>
</li>
</ul>
<p><a name="Engineering">Engineering</a> (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>WAFO. Wave Analysis for Fatigue and Oceanography&#160; <br /><a href="http://www.maths.lth.se/matstat/wafo/">http://www.maths.lth.se/matstat/wafo/</a></p>
</li>
<li>
<p>MatPIV &#8211; the Particle Image Velocimetry ( PIV) toolbox for MATLAB        <br /><a href="http://www.math.uio.no/%7Ejks/matpiv/index.html">http://www.math.uio.no/~jks/matpiv/index.html</a></p>
</li>
<li>
<p>OPNML/MATLAB Facilities        <br /><a href="http://www.opnml.unc.edu/OPNML_Matlab/">http://www.opnml.unc.edu/OPNML_Matlab/</a></p>
</li>
<li>
<p>Mesh Generation        <br /><a href="http://www.cs.cornell.edu/home/vavasis/qmg-home.html">http://www.cs.cornell.edu/home/vavasis/qmg-home.html</a></p>
</li>
<li>
<p>OpenFEM : An Open-Source Finite Element Toolbox&#160; <br /><a href="http://www.openfem.net/">http://www.openfem.net/          <br /></a></p>
</li>
<li>
<p>CALFEM is an interactive computer program for teaching the finite element method (FEM)        <br /><a href="http://www.byggmek.lth.se/Calfem/frinfo.htm">http://www.byggmek.lth.se/Calfem/frinfo.htm</a></p>
</li>
<li>
<p>The Engineering Vibration Toolbox        <br /><a href="http://www.cs.wright.edu/people/faculty/jslater/vtoolbox/vtoolbox.html">http://www.cs.wright.edu/people/faculty/jslater/vtoolbox/vtoolbox.html</a></p>
</li>
<li>
<p>SaGA &#8211; Spatial and Geometric Analysis Toolbox        <br />by Kirill K. Pankratov         <br /><a href="http://puddle.mit.edu/%7Eglenn/kirill/saga.html">http://puddle.mit.edu/~glenn/kirill/saga.html</a></p>
</li>
<li>
<p>MexCDF and NetCDF Toolbox For Matlab-5&amp;6        <br /><a href="http://woodshole.er.usgs.gov/staffpages/cdenham/public_html/MexCDF/nc4ml5.html">http://woodshole.er.usgs.gov/staffpages/cdenham/public_html/MexCDF/nc4ml5.html</a></p>
</li>
<li>
<p>CUEDSID: Cambridge University System Identification Toolbox        <br /><a href="http://www-control.eng.cam.ac.uk/jmm/cuedsid/">http://www-control.eng.cam.ac.uk/jmm/cuedsid/          <br /></a></p>
</li>
<li>
<p>Kriging Toolbox<a href="http://www.ai-geostats.org/software/Geostats_software/MATLAB_KRIGING_TOOLBOX.htm">          <br />http://www.ai-geostats.org/software/Geostats_software/MATLAB_KRIGING_TOOLBOX.htm</a></p>
</li>
<li>
<p>Monte Carlo (Dr Nando)        <br /><a href="http://www.cs.ubc.ca/%7Enando/software.html">http://www.cs.ubc.ca/~nando/software.html</a></p>
</li>
<li>
<p>RIOTS &#8211; The Most Powerful Optimal Control Problem Solver        <br /><a href="http://blank.hypersurf.com/%7Eadam/RIOTS/">http://blank.hypersurf.com/~adam/RIOTS/</a></p>
</li>
</ul>
<p><a name="DataMining">Data Mining </a>(<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>)&#160; </p>
<ul>
<li>
<p>ARMADA Data Mining Tool version 1.2        <br /><a href="http://www.jamesmalone.plus.com/software.htm">http://www.jamesmalone.plus.com/software.htm</a></p>
</li>
</ul>
<p><a name="Excel">Excel </a>(<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>)&#160; </p>
<ul>
<li>MATLAB xlsheets      <br /><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=4474&amp;objectType=file">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=4474&amp;objectType=file</a> </li>
<li>write2excel <a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=4414&amp;objectType=file">       <br />http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=4414&amp;objectType=file</a> </li>
</ul>
<p><a name="FiniteElementModeling">Finite Element Modeling</a> (FEM) (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>)&#160; </p>
<ul>
<li>
<p>IFISS Software Package        <br />Incompressible Flow &amp; Iterative Solver Software Version 2.0         <br /><a href="http://www.ma.umist.ac.uk/djs/software.html">http://www.ma.umist.ac.uk/djs/software.html</a></p>
</li>
<li>
<p>OpenFEM &#8211; An Open-Source Finite Element Toolbox&#160; <br /><a href="http://www.openfem.net/">http://www.openfem.net/</a></p>
</li>
<li>
<p>NLFET &#8211; nonlinear finite element toolbox for MATLAB ( framework for setting up, solving, and interpreting results for nonlinear static and dynamic finite element analysis.)        <br /><a href="http://nlfet.sourceforge.net/">http://nlfet.sourceforge.net/</a></p>
</li>
<li>
<p>GetFEM &#8211; C++ library for finite element methods elementary computations with a Matlab interface&#160; <br /><a href="http://www.gmm.insa-tlse.fr/getfem/">http://www.gmm.insa-tlse.fr/getfem/</a></p>
</li>
<li>
<p>FELIPE &#8211; FEA package to view results ( contains neat interface to MATLAB)        <br /><a href="http://www.brunel.ac.uk/%7Eblstmbr/felipe/">http://www.brunel.ac.uk/~blstmbr/felipe/          <br /></a></p>
</li>
</ul>
<p><a name="Finance">Finance </a>(<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>A NEW MATLAB-BASED TOOLBOX FOR COMPUTER AIDED DYNAMIC TECHNICAL TRADING        <br />Stephanos Papadamou and George Stephanides         <br />Department of Applied Informatics, University Of Macedonia Economic &amp; Social Sciences, Thessaloniki, Greece         <br /><a href="http://www.fenews.com/fen31/one_time_articles/dynamic_tech_trade_matlab6.htm">http://www.fenews.com/fen31/one_time_articles/dynamic_tech_trade_matlab6.htm</a>         <br />Paper: <a href="http://econwpa.wustl.edu:8089/eps/prog/papers/0201/0201001.pdf">http://econwpa.wustl.edu:8089/eps/prog/papers/0201/0201001.pdf</a></p>
</li>
<li>
<p>CompEcon Toolbox for Matlab        <br /><a href="http://www4.ncsu.edu/%7Epfackler/compecon/toolbox.html">http://www4.ncsu.edu/~pfackler/compecon/toolbox.html</a></p>
</li>
</ul>
<p><a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#Fuzzy" name="Fuzzy">Fuzzy</a></p>
<ul>
<li>
<p>DENFIS from ECOS Toolbox for Matlab        <br /><a href="http://www.aut.ac.nz/research/research_institutes/kedri/books.htm">http://www.aut.ac.nz/research/research_institutes/kedri/books.htm</a></p>
</li>
</ul>
<p><a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#GeneticAlgorithms" name="GeneticAlgorithms">Genetic Algorithms</a> (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>The Genetic Algorithm Optimization Toolbox (GAOT) for Matlab 5&#160; <br /><a href="http://www.ie.ncsu.edu/mirage/GAToolBox/gaot/">http://www.ie.ncsu.edu/mirage/GAToolBox/gaot/</a></p>
</li>
<li>
<p>Genetic Algorithm Toolbox        <br />Written &amp; distributed by Andy Chipperfield (Sheffield University, UK)<a href="http://www.shef.ac.uk/uni/projects/gaipp/gatbx.html">          <br />http://www.shef.ac.uk/uni/projects/gaipp/gatbx.html</a>         <br />Manual: <a href="http://www.shef.ac.uk/%7Egaipp/ga-toolbox/manual.pdf">http://www.shef.ac.uk/~gaipp/ga-toolbox/manual.pdf</a></p>
</li>
<li>
<p>Genetic and Evolutionary Algorithm Toolbox (GEATbx)        <br /><a href="http://www.geatbx.com">http://www.geatbx.com</a></p>
</li>
<li>
<p>Evolutionary Algorithms for MATLAB        <br /><a href="http://www.geatbx.com/links/ea_matlab.html">http://www.geatbx.com/links/ea_matlab.html</a></p>
</li>
<li>
<p>Genetic/Evolutionary Algorithms for MATLAB        <br /><a href="http://www.systemtechnik.tu-ilmenau.de/%7Epohlheim/EA_Matlab/ea_matlab.html">http://www.systemtechnik.tu-ilmenau.de/~pohlheim/EA_Matlab/ea_matlab.html</a></p>
</li>
</ul>
<p><a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#Graph" name="Graph">Graph</a></p>
<ul>
<li>
<p>Graph Analysis Toolbox        <br /><a href="http://eslab.bu.edu/software/graphanalysis/">http://eslab.bu.edu/software/graphanalysis/</a>         <br />Graph Analysis Toolbox DEMOS&#160; <br /><a href="http://eslab.bu.edu/software/graphanalysis/graphanalysisDEMOS.html">http://eslab.bu.edu/software/graphanalysis/graphanalysisDEMOS.html</a>         <br />The graph analysis toolbox: Image processing on arbitrary graphs         <br />Leo Grady and Eric L. Schwartz.&#160; <br />Technical Report Pending, Boston University, Boston, MA, August 2003.&#160; <br /><a href="http://eslab.bu.edu/publications/tech-reports/2003/grady2003graph-TR.pdf">http://eslab.bu.edu/publications/tech-reports/2003/grady2003graph-TR.pdf</a></p>
</li>
</ul>
<p><a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#Graphics" name="Graphics">Graphics</a></p>
<ul>
<li>
<p>Billiard Simulator for Matlab (Beta Version, 4/12/04).        <br />Lansel, Steven and Porter, Mason A. [2004].         <br />Documentation (5/02/04)&#160; <br /><a href="http://arxiv.org/PS_cache/nlin/pdf/0405/0405003.pdf">http://arxiv.org/PS_cache/nlin/pdf/0405/0405003.pdf</a></p>
</li>
<li>VideoToolbox (C routines for visual psychophysics on Macs by Denis Pelli)      <br /><a href="http://vision.nyu.edu/VideoToolbox/">http://vision.nyu.edu/VideoToolbox/</a>       <br />Paper: <a href="http://psych.nyu.edu/pelli/pubs/pelli1997videotoolbox.pdf">http://psych.nyu.edu/pelli/pubs/pelli1997videotoolbox.pdf</a> </li>
<li>4D toolbox&#160; <br /><a href="http://www.nmr.mgh.harvard.edu/%7Edaniel/links/matlab/4DToolbox.html">http://www.nmr.mgh.harvard.edu/~daniel/links/matlab/4DToolbox.html</a> </li>
</ul>
<p><a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#Images" name="Images&#160;">Images</a>&#160; (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>WHOI Silhouette DIGITIZER Version 1.0&#160; <br /><a href="http://globec.whoi.edu/software/digi_prog/WHOI_Silhouette_DIGITIZER.htm">http://globec.whoi.edu/software/digi_prog/WHOI_Silhouette_DIGITIZER.htm</a></p>
</li>
<li>
<p>Eyelink Toolbox        <br /><a href="http://psychtoolbox.org/eyelinktoolbox/">http://psychtoolbox.org/eyelinktoolbox/</a>         <br />Paper: <a href="http://psychtoolbox.org/eyelinktoolbox/EyelinkToolbox.pdf">http://psychtoolbox.org/eyelinktoolbox/EyelinkToolbox.pdf</a></p>
</li>
<li>
<p>CellStats: Automated statistical analysis of color-stained cell images in Matlab        <br /><a href="http://sigwww.cs.tut.fi/TICSP/CellStats/">http://sigwww.cs.tut.fi/TICSP/CellStats/</a></p>
</li>
<li>
<p>SDC Morphology Toolbox for MATLAB (powerful collection of latest state-of-the-art gray-scale <a href="http://www.mmorph.com/html/mminfo/mmreadme.html">morphological tools</a> that can be applied to image segmentation, non-linear filtering, pattern recognition and image analysis)         <br /><a href="http://www.mmorph.com/">http://www.mmorph.com/</a></p>
</li>
<li>
<p>Image Acquisition Toolbox        <br /><a href="http://www.mathworks.com/products/imaq/">http://www.mathworks.com/products/imaq/</a></p>
</li>
<li>
<p>Halftoning Toolbox for MATLAB        <br /><a href="http://www.ece.utexas.edu/%7Ebevans/projects/halftoning/toolbox/index.html">http://www.ece.utexas.edu/~bevans/projects/halftoning/toolbox/index.html</a></p>
</li>
<li>
<p>DIPimage &#8211; A Scientific Image Processing Toolbox for MATLAB<a href="http://www.ph.tn.tudelft.nl/DIPlib/dipimage_1.html">          <br />http://www.ph.tn.tudelft.nl/DIPlib/dipimage_1.html</a></p>
</li>
<li>
<p>PNM Toolbox<a href="http://home.online.no/%7Epjacklam/matlab/software/pnm/index.html">          <br />http://home.online.no/~pjacklam/matlab/software/pnm/index.html</a></p>
</li>
<li>
<p>AngioQuant: quantification of angiogenesis through image analysis&#160; <br /><a href="http://www.cs.tut.fi/sgn/csb/angioquant/">http://www.cs.tut.fi/sgn/csb/angioquant/</a></p>
</li>
</ul>
<p><a name="ICA">ICA / KICA and KPCA</a>&#160; (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>BSS_ORACLE 1.0 has been released!        <br /><a href="http://www.irisa.fr/metiss/bss_oracle/">http://www.irisa.fr/metiss/bss_oracle/</a></p>
</li>
<li>
<p>ICA:DTU Toolbox        <br /><a href="http://mole.imm.dtu.dk/toolbox/menu.html">http://mole.imm.dtu.dk/toolbox/menu.html</a></p>
</li>
<li>
<p>MISEP Linear and Nonlinear ICA Toolbox        <br /><a href="http://neural.inesc-id.pt/%7Elba/ica/mitoolbox.html">http://neural.inesc-id.pt/~lba/ica/mitoolbox.html</a></p>
</li>
<li>
<p>Kernel Independant Component Analysis        <br /><a href="http://www.cs.berkeley.edu/%7Efbach/kernel-ica/index.htm">http://www.cs.berkeley.edu/~fbach/kernel-ica/index.htm</a>         <br />Matlab: <a href="http://www.cs.berkeley.edu/%7Efbach/kernel-ica/kernel-ica1_2.tar.gz">kernel-ica version 1.2</a></p>
</li>
<li>
<p>KPCA- Please check the software section of kernel machines.</p>
</li>
</ul>
<p><a name="Kernel">Kernel</a>&#160; (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#kernel">Top</a>) </p>
<ul>
<li>
<p>Statistical Pattern Recognition Toolbox <a href="https://exchange.plymouth.ac.uk/exchweb/bin/redir.asp?URL=http://cmp.felk.cvut.cz/%7Exfrancv/stprtool/">         <br />http://cmp.felk.cvut.cz/~xfrancv/stprtool/</a></p>
</li>
<li>MATLABArsenal A MATLAB Wrapper for Classification&#160; <br /><a href="http://finalfantasyxi.inf.cs.cmu.edu/tmp/MATLABArsenal.htm">http://finalfantasyxi.inf.cs.cmu.edu/tmp/MATLABArsenal.htm</a> </li>
</ul>
<p><a name="Markov">Markov</a>&#160; (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>MapHMMBOX 1.1 &#8211; Matlab toolbox for Hidden Markov Modelling using Max. Aposteriori EM      <br />Prerequisites: Matlab 5.0, Netlab. Last Updated: 18 March 2002.       <br /><a href="http://www.robots.ox.ac.uk/%7Eparg/software/maphmmbox_1_1.tar">http://www.robots.ox.ac.uk/~parg/software/maphmmbox_1_1.tar</a> </li>
<li>HMMBOX 4.1 &#8211; Matlab toolbox for Hidden Markov Modelling using Variational Bayes      <br />Prerequisites: Matlab 5.0,Netlab. Last Updated: 15 February 2002..       <br /><a href="http://www.robots.ox.ac.uk/%7Eparg/software/hmmbox_3_2.tar">http://www.robots.ox.ac.uk/~parg/software/hmmbox_3_2.tar</a>       <br /><a href="http://www.robots.ox.ac.uk/%7Eparg/software/hmmbox_4_1.tar">http://www.robots.ox.ac.uk/~parg/software/hmmbox_4_1.tar</a> </li>
<li>
<p>Markov Decision Process (MDP) Toolbox for Matlab        <br />Kevin Murphy, 1999         <br /><a href="http://www.ai.mit.edu/%7Emurphyk/Software/MDP/MDP.zip">http://www.ai.mit.edu/~murphyk/Software/MDP/MDP.zip          <br /></a></p>
</li>
<li>
<p>Markov Decision Process (MDP) Toolbox v1.0 for MATLAB        <br /><a href="http://www.inra.fr/bia/T/MDPtoolbox/">http://www.inra.fr/bia/T/MDPtoolbox/</a></p>
</li>
<li>
<p>Hidden Markov Model (HMM) Toolbox for Matlab        <br /><a href="http://www.ai.mit.edu/%7Emurphyk/Software/HMM/hmm.html">http://www.ai.mit.edu/~murphyk/Software/HMM/hmm.html</a></p>
</li>
<li>
<p>Bayes Net Toolbox for Matlab&#160; <br /><a href="http://www.ai.mit.edu/%7Emurphyk/Software/BNT/bnt.html">http://www.ai.mit.edu/~murphyk/Software/BNT/bnt.html</a></p>
</li>
</ul>
<p><a name="Medical">Medical</a> (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>Extensible MATLAB Medical image Analysis)        <br /><a href="http://www.bic.mni.mcgill.ca/software/emma/">http://www.bic.mni.mcgill.ca/software/emma/</a></p>
</li>
<li>
<p>PWL &amp; PWS Approximation and identification of ODE, Matlab toolbox&#160; <br /><a href="http://aperest.epfl.ch/docs_repository/software/PWLAppxTbx.zip">http://aperest.epfl.ch/docs_repository/software/PWLAppxTbx.zip</a>         <br /><a href="http://aperest.epfl.ch/docs_repository/software/PWSAppxTbx.zip">http://aperest.epfl.ch/docs_repository/software/PWSAppxTbx.zip</a></p>
</li>
<li>
<p>Connectivity matrix identification in heterogeneous networks of oscillators, Matlab toolbox        <br />Zip: <a href="http://aperest.epfl.ch/docs_repository/software/ConnectivityMatrix.zip">http://aperest.epfl.ch/docs_repository/software/ConnectivityMatrix.zip</a></p>
</li>
<li>
<p>Neuron network identification from spike trains, Matlab toolbox&#160; <br />Zip: <a href="http://aperest.epfl.ch/docs_repository/software/INCAM.zip">http://aperest.epfl.ch/docs_repository/software/INCAM.zip</a></p>
</li>
<li>
<p>S synchronization estimator among multivariate time series, Matlab toolbox        <br />S Toolbox: <a href="http://aperest.epfl.ch/docs_repository/software/S_Toolbox.zip">http://aperest.epfl.ch/docs_repository/software/S_Toolbox.zip</a>         <br />DataTest (<a href="http://aperest.epfl.ch/docs_repository/software/DataTest.zip">.zip</a>) and DataTest1 (<a href="http://aperest.epfl.ch/docs_repository/software/DataTest1.zip">.zip</a>).</p>
</li>
<li>AFNI Matlab Library      <br /><a href="http://afni.nimh.nih.gov/afni/matlab/">http://afni.nimh.nih.gov/afni/matlab/</a> </li>
<li>Group ICA of fMRI Toolbox (GIFT)      <br /><a href="http://icatb.sourceforge.net/">http://icatb.sourceforge.net/</a> </li>
<li>EEGLAB Open Source Matlab Toolbox for Physiological Research (formerly ICA/EEG Matlab toolbox)<a href="http://www.sccn.ucsd.edu/%7Escott/ica.html">        <br />http://www.sccn.ucsd.edu/~scott/ica.html</a> </li>
<li>
<p>MATLAB Biomedical Signal Processing Toolbox        <br /><a href="http://bsp.pdx.edu/Toolbox/">http://bsp.pdx.edu/Toolbox/</a></p>
</li>
<li>
<p>Powerful package for neurophysiological data analysis ( Igor Kagan webpage)        <br /><a href="http://igoresha.virtualave.net/Matlab/Unitret.html">http://igoresha.virtualave.net/Matlab/Unitret.html</a></p>
</li>
<li>
<p>EEG / MRI Matlab Toolbox        <br /><a href="http://eeg.sourceforge.net/">http://eeg.sourceforge.net/</a></p>
</li>
<li>Microarray data analysis toolbox (MDAT): for normalization, adjustment and analysis of gene expression data.      <br />Knowlton N, Dozmorov IM, Centola M. Department of Arthritis and Immunology, Oklahoma Medical Research Foundation, Oklahoma City, OK, USA 73104. We introduce a novel Matlab toolbox for microarray data analysis. This toolbox uses normalization based upon a normally distributed background and differential gene expression based on 5 statistical measures. The objects in this toolbox are open source and can be implemented to suit your application. AVAILABILITY: MDAT v1.0 is a Matlab toolbox and requires Matlab to run. MDAT is freely available at:       <br /><a href="http://microarray.omrf.org/publications/2004/knowlton/MDAT.zip">http://microarray.omrf.org/publications/2004/knowlton/MDAT.zip        <br /></a></li>
</ul>
<p><a name="MIDI">MIDI</a>&#160; (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>MIDI Toolbox version 1.0 (GNU General Public License)        <br /><a href="http://www.jyu.fi/musica/miditoolbox/">http://www.jyu.fi/musica/miditoolbox/</a></p>
</li>
</ul>
<p><a name="Misc">Misc</a>. (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>Software by Hans Bruun Nielsen&#160; <br /><a href="http://www2.imm.dtu.dk/%7Ehbn/Software/">http://www2.imm.dtu.dk/~hbn/Software/</a></p>
</li>
<li>
<p>Using the MATLAB Data AcquisitionToolbox        <br />Brian D. Storey         <br /><a href="http://icb.olin.edu/fall_02/ec/reading/Card.pdf">http://icb.olin.edu/fall_02/ec/reading/Card.pdf</a></p>
</li>
<li>
<p>Multiple Precision Toolbox for MATLAB&#160; <br /><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=6446">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=6446</a></p>
</li>
<li>
<p>MATLAB-The Graphing Tool        <br /><a href="http://sprg.ssl.berkeley.edu/%7Eabrecht/matlab.html">http://sprg.ssl.berkeley.edu/~abrecht/matlab.html</a></p>
</li>
<li>3-D Circuits The Circuit Animation Toolbox for MATLAB      <br /><a href="http://engineering.dartmouth.edu/other/3Dcircuits/">http://engineering.dartmouth.edu/other/3Dcircuits/</a> </li>
<li>
<p>SendMail        <br /><a href="http://carol.wins.uva.nl/%7Eportegie/matlab/sendmail/">http://carol.wins.uva.nl/~portegie/matlab/sendmail/</a></p>
</li>
<li>
<p>Coolplot        <br /><a href="http://www.reimeika.ca/marco/matlab/coolplots.html">http://www.reimeika.ca/marco/matlab/coolplots.html</a></p>
</li>
</ul>
<p><a name="MPI">MPI</a> (Matlab Parallel Interface) (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>Cornell Multitask Toolbox for MATLAB        <br /><a href="http://www.tc.cornell.edu/Services/Software/CMTM/">http://www.tc.cornell.edu/Services/Software/CMTM/</a></p>
</li>
<li>
<p>Beolab Toolbox for v6.5        <br />Thomas Abrahamsson (Professor, Chalmers University of Technology, Applied Mechanics, G鰐eborg, Sweden)         <br /><a href="http://www.mathworks.nl/matlabcentral/fileexchange/loadFile.do?objectId=1216&amp;objectType=file">http://www.mathworks.nl/matlabcentral/fileexchange/loadFile.do?objectId=1216&amp;objectType=file</a></p>
</li>
<li>
<p>PARMATLAB        <br /><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=217&amp;objectType=file">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=217&amp;objectType=file</a></p>
</li>
</ul>
<p><a name="NeuralNetworks">Neural Networks</a>&#160; (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>MATLAB Toolbox for Simulation and Visualization of Random Boolean Networks (RBN). Different update modes (synchronous/asynchronous deterministic/non-deterministic), Statistical Functions, Topology Evolution. Complete documentation, function reference, tutorials, gallery and more.      <br /><a href="http://www.activewebs.ch/schwarzer/rbn/index.htm">http://www.activewebs.ch/schwarzer/rbn/index.htm</a>       <br /><a href="http://www.teuscher-research.ch/rbntoolbox/">http://www.teuscher-research.ch/rbntoolbox/</a>       <br />Also <a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=3231&amp;objectType=file">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=3231&amp;objectType=file</a> </li>
<li>
<p>SOM Toolbox&#160; <br /><a href="http://www.cis.hut.fi/projects/somtoolbox/">http://www.cis.hut.fi/projects/somtoolbox/</a></p>
</li>
<li>
<p>Bayesian methods for nonlinear classification and regression. (2002)        <br />Denison, Holmes, Mallick and Smith: Wiley. (Matlab code from the book)         <br /><a href="http://stats.ma.ic.ac.uk/ccholmes/public_html/Book_code/book_code.html">http://stats.ma.ic.ac.uk/ccholmes/public_html/Book_code/book_code.html</a></p>
</li>
<li>
<p>Bayes Net Toolbox for Matlab        <br /><a href="http://www.ai.mit.edu/%7Emurphyk/Software/BNT/bnt.html">http://www.ai.mit.edu/~murphyk/Software/BNT/bnt.html          <br /></a></p>
</li>
<li>
<p>NetLab        <br /><a href="http://www.ncrg.aston.ac.uk/netlab/">http://www.ncrg.aston.ac.uk/netlab/ </a></p>
</li>
<li>
<p>Random Neural Networks        <br /><a href="http://www.cs.ucf.edu/%7Eahossam/rnnsimv2/">http://www.cs.ucf.edu/~ahossam/rnnsimv2/</a>         <br />ftp: <a href="ftp://ftp.mathworks.com/pub/contrib/v5/nnet/rnnsimv2/">ftp://ftp.mathworks.com/pub/contrib/v5/nnet/rnnsimv2/</a></p>
</li>
<li>
<p>NNSYSID Toolbox (tools for neural network based identification of nonlinear dynamic systems)        <br /><a href="http://www.iau.dtu.dk/research/control/nnsysid.html">http://www.iau.dtu.dk/research/control/nnsysid.html</a></p>
</li>
</ul>
<p><a name="Oceanography">Oceanography</a>&#160; (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>FATHOM &#8211; free Matlab toolbox for Multivariate Ecological and Oceanographic Data Analysis      <br />A collection of functions written by DAVID L. JONES University of Miami &#8211; RSMAS.       <br />Contents: fathom.zip New Features (29-Oct-2003) Draft User&#8217;s Manual (22-Mar-2003)&#160; </li>
<li>DROG2DDT tracks passive particles in a 2-D flow-field defined on a FEM domain. The integrator is 4th-order Runge-Kutta.      <br /><a href="http://www.opnml.unc.edu/OPNML_Matlab/drog2ddt.m">http://www.opnml.unc.edu/OPNML_Matlab/drog2ddt.m</a> </li>
<li>WAFO. Wave Analysis for Fatigue and Oceanography      <br /><a href="http://www.maths.lth.se/matstat/wafo/">http://www.maths.lth.se/matstat/wafo/</a> </li>
<li>
<p>ADCP toolbox for MATLAB (USGS, USA)        <br />Presented at the Hydroacoustics Workshop in Tampa and at ADCP&#8217;s in Action in San Diego         <br /><a href="http://woodshole.er.usgs.gov/operations/stg/pubs/ADCPtools">http://woodshole.er.usgs.gov/operations/stg/pubs/ADCPtools</a></p>
</li>
<li>
<p>SEA-MAT &#8211; Matlab Tools for Oceanographic Analysis        <br />A collaborative effort to organize and distribute Matlab tools for the Oceanographic Community         <br /><a href="http://sea-mat.whoi.edu/">http://sea-mat.whoi.edu/</a></p>
</li>
<li>
<p>Ocean Toolbox        <br /><a href="http://www.mar.dfo-mpo.gc.ca/science/ocean/epsonde/programming.html">http://www.mar.dfo-mpo.gc.ca/science/ocean/epsonde/programming.html</a></p>
</li>
<li>
<p>EUGENE D. GALLAGHER        <br />(Associate Professor, Environmental, Coastal &amp; Ocean Sciences)         <br /><a href="http://www.es.umb.edu/edgwebp.htm">http://www.es.umb.edu/edgwebp.htm          <br /></a></p>
</li>
</ul>
<p><a name="Optimization">Optimization</a>&#160; (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>GP-OLS MATLAB Toolbox        <br /><a href="http://www.fmt.vein.hu/softcomp/gp/">http://www.fmt.vein.hu/softcomp/gp/</a></p>
</li>
<li>Space Mapping Toolbox      <br /><a href="http://www.imm.dtu.dk/%7Ekm/spacemap/spacemap.html">http://www.imm.dtu.dk/~km/spacemap/spacemap.html</a>       <br />Manual: <a href="http://www2.imm.dtu.dk/%7Ekm/spacemap/manual.pdf">http://www2.imm.dtu.dk/~km/spacemap/manual.pdf</a> </li>
<li>MODCONS &#8211; a MATLAB Toolbox for Multi-Objective Control System Design <a href="http://www.eee.kcl.ac.uk/mecheng/jfw/modcons.html">       <br />http://www.eee.kcl.ac.uk/mecheng/jfw/modcons.html</a> </li>
<li>
<p>Lazy Learning Package        <br /><a href="http://iridia.ulb.ac.be/%7Elazy/">http://iridia.ulb.ac.be/~lazy/</a></p>
</li>
<li>
<p>SDPT3 version 3.02 &#8212; a MATLAB software for semidefinite-quadratic-linear programming        <br /><a href="http://www.math.nus.edu.sg/%7Emattohkc/sdpt3.html">http://www.math.nus.edu.sg/~mattohkc/sdpt3.html</a></p>
</li>
<li>
<p>Minimum Enclosing Balls: Matlab Code&#160; <br /><a href="http://www.compgeom.com/meb/">http://www.compgeom.com/meb/</a></p>
</li>
<li>
<p>SOSTOOLS Sum of Squares Optimization Toolbox for MATLAB User抯 guide        <br /><a href="http://www.cds.caltech.edu/sostools/sostools.pdf">http://www.cds.caltech.edu/sostools/sostools.pdf </a></p>
</li>
<li>
<p>PSOt &#8211; a Particle Swarm Optimization Toolbox for use with Matlab        <br />By Brian Birge &#8230; A Particle Swarm Optimization Toolbox (PSOt) for use with the Matlab scientific programming environment has been developed. PSO is         <br />introduced briefly and then the use of the toolbox is explained with some examples. A link to downloadable code is provided.</p>
</li>
</ul>
<p><a name="Plot">Plot</a> (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>GrTheory &#8211; Graph Theory Toolbox&#160;&#160; <br /><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=4266&amp;objectType=file">http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=4266&amp;objectType=file</a> </li>
<li>
<p>MATLAB basic plot utility        <br /><a href="http://globec.whoi.edu/software/plotting/gbplot/">http://globec.whoi.edu/software/plotting/gbplot/</a></p>
</li>
</ul>
<p><a name="SignalProcessing">Signal Processing</a>&#160; (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>)</p>
<ul>
<li>
<p>Regularization Tools Version 3.1 (for Matlab Version 6.0)        <br /><a href="http://www2.imm.dtu.dk/%7Epch/Regutools/regutools.html">http://www2.imm.dtu.dk/~pch/Regutools/regutools.html</a></p>
</li>
<li>
<p>Nonlinear Time Series Analysis Component&#160; <br /><a href="http://www.macalester.edu/%7Ekaplan/Software/Software/mfiles.html">http://www.macalester.edu/~kaplan/Software/Software/mfiles.html</a></p>
</li>
<li>
<p>Filter Design package        <br /><a href="http://www.ee.ryerson.ca:8080/%7Emzeytin/dfp/index.html">http://www.ee.ryerson.ca:8080/~mzeytin/dfp/index.html</a></p>
</li>
<li>
<p>Deconvolution Toolbox        <br /><a href="http://www.signal.uu.se/Toolbox/DT/">http://www.signal.uu.se/Toolbox/DT/</a>         <br />Manual: <a href="http://www.signal.uu.se/Toolbox/DT/ManualDeconvTool.pdf">http://www.signal.uu.se/Toolbox/DT/ManualDeconvTool.pdf</a></p>
</li>
<li>
<p>Filter Design with Motorola DSP56K        <br /><a href="http://www.ee.ryerson.ca:8080/%7Emzeytin/dfp/index.html">http://www.ee.ryerson.ca:8080/~mzeytin/dfp/index.html</a></p>
</li>
<li>
<p>Change Detection and Adaptive Filtering Toolbox        <br /><a href="http://www.sigmoid.se/">http://www.sigmoid.se/</a></p>
</li>
<li>
<p>Signal Processing Toolbox        <br /><a href="http://www.mathworks.com/products/signal/">http://www.mathworks.com/products/signal/</a></p>
</li>
<li>ICA:DTU Toolbox      <br /><a href="http://mole.imm.dtu.dk/toolbox/menu.html">http://mole.imm.dtu.dk/toolbox/menu.html</a> </li>
<li>
<p>Time-Frequency Toolbox for Matlab        <br /><a href="http://crttsn.univ-nantes.fr/%7Eauger/tftb.html">http://crttsn.univ-nantes.fr/~auger/tftb.html          <br /></a></p>
</li>
<li>
<p>VoiceBox &#8211; Speech Processing Toolbox<a href="http://www.ee.ic.ac.uk/hp/staff/dmb/voicebox/voicebox.html">          <br />http://www.ee.ic.ac.uk/hp/staff/dmb/voicebox/voicebox.html</a></p>
</li>
<li>
<p>Least Squared &#8211; Support Vector Machines (LS-SVM)        <br /><a href="http://www.esat.kuleuven.ac.be/sista/lssvmlab/">http://www.esat.kuleuven.ac.be/sista/lssvmlab/</a></p>
</li>
<li>
<p>WaveLab802 : the Wavelet Toolbox        <br />By <a href="http://www-stat.stanford.edu/%7Edonoho">David Donoho</a>, <a href="http://www-stat.stanford.edu/%7Emduncan">Mark Reynold Duncan</a>, <a href="http://www.isye.gatech.edu/%7Exiaoming">Xiaoming Huo</a>, Ofer Levi<a href="http://www-stat.stanford.edu/%7Ewavelab/">          <br />http://www-stat.stanford.edu/~wavelab/</a></p>
</li>
<li>
<p>Time-series Matlab scripts        <br /><a href="http://wise-obs.tau.ac.il/%7Eeran/MATLAB/TimeseriesCon.html">http://wise-obs.tau.ac.il/~eran/MATLAB/TimeseriesCon.html</a></p>
</li>
<li>
<p>Uvi_Wave Wavelet Toolbox Home Page&#160; <br /><a href="http://www.gts.tsc.uvigo.es/%7Ewavelets/index.html">http://www.gts.tsc.uvigo.es/~wavelets/index.html</a></p>
</li>
<li>
<p>Another</p>
</li>
</ul>
<p><a name="SupportVectorMachine">Support Vector Machine</a> (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>SVM and Kernel Methods Matlab Toolbox      <br /><a href="http://asi.insa-rouen.fr/%7Earakotom/toolbox/index">http://asi.insa-rouen.fr/~arakotom/toolbox/index</a> </li>
<li>
<p>MATLAB Support Vector Machine Toolbox        <br />Dr Gavin Cawley         <br />School of Information Systems, University of East Anglia         <br /><a href="http://theoval.sys.uea.ac.uk/%7Egcc/svm/toolbox/">http://theoval.sys.uea.ac.uk/~gcc/svm/toolbox/</a></p>
</li>
<li>
<p>LS-SVM &#8211; SISTA        <br /><a href="http://www.esat.kuleuven.ac.be/sista/lssvmlab/">http://www.esat.kuleuven.ac.be/sista/lssvmlab/</a></p>
</li>
<li>
<p>SVM toolboxes        <br /><a href="http://www.cs.wisc.edu/dmi/svm/">http://www.cs.wisc.edu/dmi/svm/</a></p>
</li>
<li>
<p>LSVM Lagrangian Support Vector Machine        <br /><a href="http://www.cs.wisc.edu/dmi/lsvm/">http://www.cs.wisc.edu/dmi/lsvm/</a></p>
</li>
</ul>
<p><a name="Statistics">Statistics</a>&#160; (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </p>
<ul>
<li>
<p>Regularization Tools Version 3.1 (for Matlab Version 6.0)        <br /><a href="http://www2.imm.dtu.dk/%7Epch/Regutools/index.html">http://www2.imm.dtu.dk/~pch/Regutools/index.html</a></p>
</li>
<li>
<p>ENTOOL &#8211; Ensemble toolbox for Statistical Learning        <br /><a href="http://zti.if.uj.edu.pl/%7Emerkwirth/entool.htm">http://zti.if.uj.edu.pl/~merkwirth/entool.htm</a></p>
</li>
<li>
<p>Statistical Parametric Mapping (SPM)        <br /><a href="http://www.fil.ion.ucl.ac.uk/spm/ext/">http://www.fil.ion.ucl.ac.uk/spm/ext/</a></p>
</li>
<li>Logistic regression&#160; <br /><a href="http://www.spatial-econometrics.com/">http://www.spatial-econometrics.com/</a> </li>
<li>SAGA      <br /><a href="http://globec.whoi.edu/software/saga/">http://globec.whoi.edu/software/saga/</a> </li>
<li>Multi-Parametric Toolbox (MPT) A tool (not only) for multi-parametric optimization.      <br /><a href="http://control.ee.ethz.ch/%7Empt/">http://control.ee.ethz.ch/~mpt/</a> </li>
<li>ARfit: A Matlab package for the estimation of parameters and eigenmodes of multivariate autoregressive models      <br /><a href="http://www.mat.univie.ac.at/%7Eneum/software/arfit/">http://www.mat.univie.ac.at/~neum/software/arfit/</a> </li>
<li>
<p>The Dimensional Analysis Toolbox for MATLAB        <br />Home: <a href="http://www.sbrs.de/">http://www.sbrs.de/</a>         <br />Paper: <a href="http://www.isd.uni-stuttgart.de/%7Ebrueckner/Papers/similarity2002.pdf">http://www.isd.uni-stuttgart.de/~brueckner/Papers/similarity2002.pdf</a></p>
</li>
<li>FATHOM for Matlab&#160; <br /><a href="http://www.rsmas.miami.edu/personal/djones/">http://www.rsmas.miami.edu/personal/djones/</a> </li>
<li>PLS-toolbox      <br /><a href="http://www.eigenvector.com">http://www.eigenvector.com</a> </li>
<li>Multivariate analysis toolbox (N-way Toolbox &#8211; paper)<a href="http://www.models.kvl.dk/source/nwaytoolbox/index.asp">        <br />http://www.models.kvl.dk/source/nwaytoolbox/index.asp</a> </li>
<li>Classification Toolbox for Matlab      <br /><a href="http://tiger.technion.ac.il/%7Eeladyt/classification/index.htm">http://tiger.technion.ac.il/~eladyt/classification/index.htm </a></li>
<li>Matlab toolbox for Robust Calibration      <br /><a href="http://www.wis.kuleuven.ac.be/stat/robust/toolbox.html">http://www.wis.kuleuven.ac.be/stat/robust/toolbox.html</a> </li>
<li>Statistical Parametric Mapping      <br /><a href="http://www.fil.ion.ucl.ac.uk/spm/spm2.html">http://www.fil.ion.ucl.ac.uk/spm/spm2.html</a> </li>
<li>EVIM: A Software Package for Extreme Value Analysis in Matlab&#160; <br />by Ramazan Gen鏰y, Faruk Selcuk and Abdurrahman Ulugulyagci, 2001.       <br />Manual (pdf file) <a href="http://www.carleton.ca/%7Ergencay/evim.pdf">evim.pdf</a> &#8211; Software (zip file) <a href="http://www.carleton.ca/%7Ergencay/evim.zip">evim.zip</a> </li>
<li>Time Series Analysis      <br /><a href="http://www.dpmi.tu-graz.ac.at/%7Eschloegl/matlab/tsa/">http://www.dpmi.tu-graz.ac.at/~schloegl/matlab/tsa/</a> </li>
<li>Bayes Net Toolbox for Matlab      <br />Written by Kevin Murphy       <br /><a href="http://www.ai.mit.edu/%7Emurphyk/Software/BNT/bnt.html">http://www.ai.mit.edu/~murphyk/Software/BNT/bnt.html</a>       <br />Other: <a href="http://www.isp.pitt.edu/information/toolboxes.html">http://www.isp.pitt.edu/information/toolboxes.html</a> </li>
<li>
<p>ARfit: A Matlab package for the estimation of parameters and eigenmodes of multivariate autoregressive models        <br /><a href="http://www.gps.caltech.edu/%7Etapio/arfit/">http://www.gps.caltech.edu/~tapio/arfit/</a></p>
</li>
<li>
<p>M-Fit        <br /><a href="http://www.ill.fr/tas/matlab/doc/mfit4/mfit.html">http://www.ill.fr/tas/matlab/doc/mfit4/mfit.html&#160; <br /></a></p>
</li>
<li>
<p>Dimensional Analysis Toolbox for Matlab        <br /><a href="http://www.sbrs.net/">http://www.sbrs.net/</a></p>
</li>
<li>
<p>The NaN-toolbox: A statistic-toolbox for Octave and Matlab&#8230; handles data with and without MISSING VALUES.&#160; <br /><a href="http://www-dpmi.tu-graz.ac.at/%7Eschloegl/matlab/NaN/">http://www-dpmi.tu-graz.ac.at/~schloegl/matlab/NaN/</a></p>
</li>
<li>
<p><strong>Iterative Methods for Optimization: Matlab Codes          <br /></strong><a href="http://www4.ncsu.edu/%7Ectk/matlab_darts.html">http://www4.ncsu.edu/~ctk/matlab_darts.html</a></p>
</li>
<li>
<p><strong>Multiscale Shape Analysis (MSA) Matlab Toolbox 2000</strong>         <br /><a href="http://www.vision.ime.usp.br/%7Ecesar/projects/multiscale/">http://www.vision.ime.usp.br/~cesar/projects/multiscale/</a></p>
</li>
<li>
<p><strong>Multivariate Ecological &amp; Oceanographic Data Analysis (FATHOM)          <br /></strong>From David Jones         <br /><a href="http://www.rsmas.miami.edu/personal/djones/">http://www.rsmas.miami.edu/personal/djones/</a></p>
</li>
<li>
<p><strong>Generalized Linear Models (glmlab)</strong>         <br /><a href="http://www.sci.usq.edu.au/staff/dunn/glmlab/glmlab.html">http://www.sci.usq.edu.au/staff/dunn/glmlab/glmlab.html</a></p>
</li>
<li>
<p>Spacial and Geometric Analysis (SaGA) toolbox </p>
</li>
</ul>
<h6>Wavelets (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </h6>
<ul>
<li>
<p>MATLAB wavelet coherence package        <br /><a href="http://www.pol.ac.uk/home/research/waveletcoherence/">http://www.pol.ac.uk/home/research/waveletcoherence/</a></p>
</li>
<li>
<p>WSPM: Wavelet-based Statistical Parametric Mapping&#160; <br /><a href="http://bigwww.epfl.ch/demo/wspm/">http://bigwww.epfl.ch/demo/wspm/</a></p>
</li>
<li>
<p>Biomedical Imaging Group        <br /><a href="http://bigwww.epfl.ch/algorithms.html">http://bigwww.epfl.ch/algorithms.html</a></p>
</li>
</ul>
<h6>Web (<a href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html#top">Top</a>) </h6>
<ul>
<li>
<p>XML Toolbox for Matlab (v3.2.0)</p>
</li>
</ul>
<p>来源：<a title="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html" href="http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html">http://www.tech.plym.ac.uk/spmc/links/matlab/matlab_toolbox.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matke.com/matlab-toolboxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MATLAB工具箱下载地址总汇</title>
		<link>http://www.matke.com/matlab-toolboxes-download/</link>
		<comments>http://www.matke.com/matlab-toolboxes-download/#comments</comments>
		<pubDate>Thu, 06 May 2010 12:54:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[matlab]]></category>
		<category><![CDATA[toolboxes]]></category>

		<guid isPermaLink="false">http://www.matke.com/?p=6</guid>
		<description><![CDATA[MATLAB工具箱下载地址总汇 1.平面操作工具箱 http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=35&#38;ID=750&#38;replyID=&#38;skin=1 2.SimMechanics 工具箱 (这个好像不是免费的) http://www.mathworks.com/access/helpdesk/help/toolbox/physmod/mech/mech.shtml 3.遗传算法工具箱 http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=25&#38;ID=655&#38;replyID=&#38;skin=1 http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=35&#38;replyID=1430&#38;id=1430&#38;skin=0#f2 http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=54&#38;ID=3040&#38;replyID=&#38;skin=1 4.Optimization Toolbox 2.2 http://www.ttdown.com/SoftDown.asp?ID=25782 5.Vibration Toolbox http://www.cs.wright.edu/people/faculty/jslater/vtoolbox/vtoolbox.html 6.MATLAB机器视觉工具箱 http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=35&#38;ID=751&#38;replyID=&#38;skin=1 7.Polynomial Toolbox http://www.polyx.com/frm-main-download.htm 8.TIME-FREQUENCY TOOLBOX http://crttsn.univ-nantes.fr/~auger/tftb.html 9.Uvi_Wave Wavelet Toolbox http://www.gts.tsc.uvigo.es/~wavelets/ 10.THE NNSYSID TOOLBOX &#8211; Version 2 http://kalman.iau.dtu.dk/research/control/nnsysid.html 11.Camera calibration toolbox http://www.ee.oulu.fi/~jth/calibr/ 12.Virtual Control Lab http://www.esr.ruhr-uni-bochum.de/VCLab/ 13.有限元工具箱 http://vib.hit.edu.cn/vibbbs/dispbbs.asp?boardid=35&#38;id=3466#f2 14.最速梯度法 http://vib.hit.edu.cn/vibbbs/dispbbs.asp?boardid=35&#38;id=3466#f3 来源：http://mech.cndev.org/articles/3576.aspx]]></description>
			<content:encoded><![CDATA[<p>MATLAB工具箱下载地址总汇    <br />1.平面操作工具箱     <br /><a href="http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=35&amp;ID=750&amp;replyID=&amp;skin=1">http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=35&amp;ID=750&amp;replyID=&amp;skin=1</a>     <br />2.SimMechanics 工具箱 (这个好像不是免费的)     <br /><a href="http://www.mathworks.com/access/helpdesk/help/toolbox/physmod/mech/mech.shtml">http://www.mathworks.com/access/helpdesk/help/toolbox/physmod/mech/mech.shtml</a>     <br />3.遗传算法工具箱     <br /><a href="http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=25&amp;ID=655&amp;replyID=&amp;skin=1">http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=25&amp;ID=655&amp;replyID=&amp;skin=1</a>     <br /><a href="http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=35&amp;replyID=1430&amp;id=1430&amp;skin=0#f2">http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=35&amp;replyID=1430&amp;id=1430&amp;skin=0#f2</a>     <br /><a href="http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=54&amp;ID=3040&amp;replyID=&amp;skin=1">http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=54&amp;ID=3040&amp;replyID=&amp;skin=1</a>     <br />4.Optimization Toolbox 2.2     <br /><a href="http://www.ttdown.com/SoftDown.asp?ID=25782">http://www.ttdown.com/SoftDown.asp?ID=25782</a>     <br />5.Vibration Toolbox     <br /><a href="http://www.cs.wright.edu/people/faculty/jslater/vtoolbox/vtoolbox.html">http://www.cs.wright.edu/people/faculty/jslater/vtoolbox/vtoolbox.html</a>     <br />6.MATLAB机器视觉工具箱     <br /><a href="http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=35&amp;ID=751&amp;replyID=&amp;skin=1">http://vib.hit.edu.cn/vibbbs/dispbbs.asp?BoardID=35&amp;ID=751&amp;replyID=&amp;skin=1</a>     <br />7.Polynomial Toolbox     <br /><a href="http://www.polyx.com/frm-main-download.htm">http://www.polyx.com/frm-main-download.htm</a>     <br />8.TIME-FREQUENCY TOOLBOX     <br /><a href="http://crttsn.univ-nantes.fr/%7Eauger/tftb.html">http://crttsn.univ-nantes.fr/~auger/tftb.html</a>     <br />9.Uvi_Wave Wavelet Toolbox     <br /><a href="http://www.gts.tsc.uvigo.es/%7Ewavelets/">http://www.gts.tsc.uvigo.es/~wavelets/</a>     <br />10.THE NNSYSID TOOLBOX &#8211; Version 2     <br /><a href="http://kalman.iau.dtu.dk/research/control/nnsysid.html">http://kalman.iau.dtu.dk/research/control/nnsysid.html</a>     <br />11.Camera calibration toolbox     <br /><a href="http://www.ee.oulu.fi/%7Ejth/calibr/">http://www.ee.oulu.fi/~jth/calibr/</a>     <br />12.Virtual Control Lab     <br /><a href="http://www.esr.ruhr-uni-bochum.de/VCLab/">http://www.esr.ruhr-uni-bochum.de/VCLab/</a>     <br />13.有限元工具箱     <br /><a href="http://vib.hit.edu.cn/vibbbs/dispbbs.asp?boardid=35&amp;id=3466#f2">http://vib.hit.edu.cn/vibbbs/dispbbs.asp?boardid=35&amp;id=3466#f2</a>     <br />14.最速梯度法     <br /><a href="http://vib.hit.edu.cn/vibbbs/dispbbs.asp?boardid=35&amp;id=3466#f3">http://vib.hit.edu.cn/vibbbs/dispbbs.asp?boardid=35&amp;id=3466#f3</a></p>
<p>来源：<a title="http://mech.cndev.org/articles/3576.aspx" href="http://mech.cndev.org/articles/3576.aspx">http://mech.cndev.org/articles/3576.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matke.com/matlab-toolboxes-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matlab R2010a发布</title>
		<link>http://www.matke.com/matlab-r2010a-release/</link>
		<comments>http://www.matke.com/matlab-r2010a-release/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 16:53:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[matlab]]></category>

		<guid isPermaLink="false">http://www.matke.com/?p=4</guid>
		<description><![CDATA[Release 2010a 的新功能 Release 2010a 包括 MATLAB 和 Simulink 的若干新功能、一款新产品以及对其它 85 款产品的更新和缺陷修复。已经购买 MathWorks 软件维护服务的用户可以下载产品更新。从 R2010a 起，PolySpace 产品需要激活。访问许可中心下载产品、激活软件并管理许可证和用户信息。 MATLAB 产品系列的新功能包括： 增加更多多线程数学函数，增强文件共享、路径管理功能以及改进 MATLAB 桌面 新增用于在 MATLAB 中进行流处理的系统对象，并在Video and Image Processing Blockset 和 Signal Processing Blockset 中提供超过 140 种支持算法 针对 50 多个函数提供多核支持并增强性能，并对图像处理工具箱中的大型图像提供更多支持 在全局优化工具箱和优化工具箱中提供新的非线性求解器 能够从 Symbolic Math Toolbox 中生成 Simscape 语言方程 在 SimBiology 中提供随机近似最大期望 (SAEM) 算法和药动学给药方案支持 Simulink 产品系列的新功能包括： 在 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Release 2010a 的新功能</strong></p>
<p>Release 2010a 包括 MATLAB 和 Simulink 的若干新功能、一款新产品以及对其它 85 款产品的<a href="http://www.mathworks.cn/products/new_products/latest_features.html#List">更新</a>和缺陷修复。已经购买 MathWorks 软件维护服务的用户可以<a href="http://www.mathworks.com/support/web_downloads_bounce.html?s_cid=wdl_link6">下载</a>产品更新。从 R2010a 起，<a href="http://www.mathworks.cn/products/new_products/latest_features.html#PolySpace">PolySpace</a> 产品需要<a href="http://www.mathworks.cn/support/activation/polyspace.html">激活</a>。访问<a href="http://www.mathworks.cn/support/activation/licensecenter.html">许可中心</a>下载产品、激活软件并管理许可证和用户信息。     <br /><strong>MATLAB 产品系列的新功能包括：</strong></p>
<ul>
<li>增加更多多线程数学函数，增强文件共享、路径管理功能以及改进 <a href="http://www.mathworks.cn/access/helpdesk/help/techdoc/rn/br_03sl.html">MATLAB</a> 桌面 </li>
</ul>
<ul>
<li>新增用于在 MATLAB 中进行流处理的系统对象，并在<a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/vipblks/rn/bsa9ycc-1.html">Video and Image Processing Blockset</a> 和 <a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/dspblks/rn/bsa8qr3-1.html">Signal Processing Blockset</a> 中提供超过 140 种支持算法 </li>
</ul>
<ul>
<li>针对 50 多个函数提供多核支持并增强性能，并对<a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/images/rn/bsad1qy-1.html">图像处理工具箱</a>中的大型图像提供更多支持 </li>
</ul>
<ul>
<li>在<a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/gads/rn/bsba3c3.html">全局优化工具箱</a>和<a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/optim/rn/bsba32w-1.html">优化工具箱</a>中提供新的非线性求解器 </li>
</ul>
<ul>
<li>能够从 <a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/symbolic/rn/bsdbwkd-1.html">Symbolic Math Toolbox</a> 中生成 <a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/physmod/simscape/rn/bscxg7r-1.html">Simscape</a> 语言方程 </li>
</ul>
<ul>
<li>在 <a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/simbio/rn/bsd4_pt-1.html">SimBiology</a> 中提供随机近似最大期望 (SAEM) 算法和药动学给药方案支持 </li>
</ul>
<p><strong>Simulink 产品系列的新功能包括：</strong>
<ul>
<li>在 <a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/simulink/rn/bsawhtd.html">Simulink</a> 中提供可调参数结构、触发模型块以及用于大型建模的函数调用分支 </li>
</ul>
<ul>
<li>在 <a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/idelink/rn/bsboan1-1.html">嵌入式 IDE 链接</a>和<a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/targetsupport/rn/bscv5r2-1.html">目标支持包</a>中提供针对 Eclipse、嵌入式 Linux 及 ARM 处理器的代码生成支持 </li>
</ul>
<ul>
<li>在 <a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/certkitiec/rn/bsc9l16.html">IEC 认证工具包</a>中提供对 Real-Time Workshop Embedded Coder 和 PolySpace 产品的 ISO 26262 认证 </li>
</ul>
<ul>
<li>在 <a href="http://www.mathworks.cn/access/helpdesk/help/toolbox/qualkitdo/rn/bsc9ryj.html">DO 鉴定工具包</a>中提供扩展至模型的 DO-178B 鉴定支持 </li>
</ul>
<ul>
<li><a href="http://www.mathworks.cn/products/login_releasenotes.html?targetURL=/access/helpdesk/help/toolbox/plccoder/rn/bsc9k6f-1.html">Simulink PLC Coder</a>，用于生成 PLC 和PAC IEC 61131 结构化文本的新产品 </li>
</ul>
<blockquote><p>电驴下载：ed2k://|file|[%E7%9F%A9%E9%99%A3%E5%AF%A6%E9%A9%97%E5%AE%A4].Mathworks.Matlab.R2010a.ISO-TBE.iso|5614561280|B0825B401987DC5D42A688D41B1512A0|h=22Q2JTJPBASQWDEUAE5ABZ7IZIJ5BY52|/</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.matke.com/matlab-r2010a-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
