<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel rdf:about="http://blogmarks.net/api/marks/tag/matlab">
<title>Public marks with tag matlab</title>
<description>Public marks with tag matlab</description>
<link>http://blogmarks.net/marks/tag/matlab</link>
<items><rdf:Seq><rdf:li resource="http://blogmarks.net/api/user/rwatuny/mark/1058371479"/>
<rdf:li resource="http://blogmarks.net/api/user/pvergain/mark/1057395544"/>
<rdf:li resource="http://blogmarks.net/api/user/zoofusa/mark/2499613"/>
<rdf:li resource="http://blogmarks.net/api/user/zoofusa/mark/2499614"/>
<rdf:li resource="http://blogmarks.net/api/user/lefty/mark/2287801"/>
<rdf:li resource="http://blogmarks.net/api/user/wasteland93/mark/2203922"/>
<rdf:li resource="http://blogmarks.net/api/user/Guillom/mark/1948367"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165152"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165153"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165227"/>
<rdf:li resource="http://blogmarks.net/api/user/YukuanBlog/mark/977318"/>
<rdf:li resource="http://blogmarks.net/api/user/YukuanMark/mark/1146374"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165290"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165298"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165316"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165370"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165371"/>
<rdf:li resource="http://blogmarks.net/api/user/ponsfrilus/mark/906916"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165407"/>
<rdf:li resource="http://blogmarks.net/api/user/topcool/mark/673434"/>
<rdf:li resource="http://blogmarks.net/api/user/wasteland93/mark/633291"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165460"/>
<rdf:li resource="http://blogmarks.net/api/user/wasteland93/mark/558520"/>
<rdf:li resource="http://blogmarks.net/api/user/ponsfrilus/mark/654361"/>
<rdf:li resource="http://blogmarks.net/api/user/redivider/mark/1165539"/>
</rdf:Seq></items>
</channel>
<item rdf:about="http://blogmarks.net/api/user/rwatuny/mark/1058371479">
<title>The MathWorks - MATLAB and Simulink for Technical Computing</title>
<link>http://www.mathworks.com/</link>
<description></description>
<dc:date>2009-06-07T22:27:55Z</dc:date>
<dc:author>rwatuny</dc:author>
<dc:subject>mathématiques, science, simulation, éducation, matlab, programmation</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.mathworks.com/"><img border="0" src="http://blogmarks.net/screenshots/2006/08/13/b9ae75bd5e5a334fbb4fc7a9cf11be02.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.mathworks.com/">The MathWorks - MATLAB and Simulink for Technical Computing</a></h4>
 
by <a href="http://blogmarks.net/user/rwatuny">rwatuny</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/400832">6 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/math%25C3%25A9matiques">mathématiques</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/science">science</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/simulation">simulation</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/%25C3%25A9ducation">éducation</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/programmation">programmation</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058371479">Copy</a> | 
<a href="http://blogmarks.net/link/400832">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/pvergain/mark/1057395544">
<title>Python instead of Matlab for plotting?</title>
<link>http://www.ii.uib.no/~avle/python.html</link>
<description>A few years ago I «fell in love» with Python , which is a dynamically typed interactive, object oriented scripting language. With a few extensions I found it very suitable for efficient visualization and problem solving in Scientific computing. So can it replace Matlab? For me its pretty close! For you? It depends on your needs, but have a look!

Why I use Python

    * Python is a small, high level scripting language that sits on top of a efficient C library. Because of this, Python code is compact, and the resulting code can run at a speed close to C if the computationally intensive parts are done via library calls.
    * Short learning curve - I was almost instantly productive.
    * Python can be used interactively (like matlab), and documentation for most functions can be accessed via a built in help facility.
    * It is free (also in this regard)
    * The syntax invites you to write clean code. No ;'s at the end of lines, the block structure is described by indentation instead of Begin-End or {..}. Through the Numeric/numarray modules one gets powerful array syntax - inspired by languages such as Fortran 90, Matlab, Octave, Yorick etc. Python itself has also borrowed features from e.g. Lisp, with its interactivity and built in support for list manipulation.
    * Python has many other useful modules built in, one may for instance write a web server in just a few lines of code or work transparently with gzipped files (handy for analyzing large ascii data files)
    * Linking in and reusing Fortran subroutines is very easy using e.g. f2py mentioned below, or the Pyfort module found on www.python.org. Integration with C is of course even tighter since the most popular python is written in C. (yes. there is a java python...)
    * It is possible to work in single precision, which is sufficient for most scientific purposes. This makes it easier to work with large datasets/arrays using only half the memory compared to e.g. matlab. 

As my basic setup I use Python with the following extensions:
Numpy: a.k.a. Numeric python, contain the advanced array syntax, as well as powerful and commonly used functions that can be applied to the multi dimensional arrays.

Pygist: Gist is a very fast graphics library for 2D and 3D plots written directly for X11, but also ported to Mac and Windows. Gist is a part of the Yorick language. Pygist contain the Python bindings, read about it here. A recent version of Pygist can be found here. Pygist is currently also a part of a distribution of Python packages called Scipy, that can be found here.

f2py: Makes connecting Fortran subroutines a breeze! Also a part of Scipy. A complete example: wrap this subroutine in a Python function returning &quot;dist&quot;:

[avle@tindved test]$ cat r1.f90
subroutine r1(x,y,n,dist)
  real x(n),y(n)
!f2py intent(out) dist
  xl=0.0 ; yl=0.0 ; vp=0.0
  do i=1,n
     xl=xl + x(i)**2 ;  yl=yl + y(i)**2
     vp=vp + x(i)*y(i)
  end do
  if(vp&gt;=0.0)then
    dist = acos(sqrt(vp/(xl*yl)))
  else
    dist = 4*atan(1.0)-acos(sqrt(-vp/(xl*yl)))
  end if
end subroutine r1

[avle@tindved test]$ ls
r1.f90
[avle@tindved test]$ f2py -c -m r1 --fcompiler=g95 r1.f90
..lots of output...
[avle@tindved test]$ ls
r1.f90  r1.so*
[avle@tindved test]$ python2
Python 2.2.3 (#1, Feb 15 2005, 02:41:06) 
[GCC 3.2.3 20030502 (Red Hat Linux 3.2.3-49)] on linux2
Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.
&gt;&gt;&gt; import Numeric as nx, r1
&gt;&gt;&gt; a=nx.array((2.3,2.2)) ; b=nx.array((3.2,2.1))
&gt;&gt;&gt; r1.r1(a,b)
1.2827057838439941
&gt;&gt;&gt; 
</description>
<dc:date>2007-08-11T20:30:32Z</dc:date>
<dc:author>pvergain</dc:author>
<dc:subject>python, bibliotheques, matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.ii.uib.no/~avle/python.html"><img border="0" src="http://blogmarks.net/screenshots/2007/08/11/2a9e3bc96b9d56e47004a700798494ad.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.ii.uib.no/~avle/python.html">Python instead of Matlab for plotting?</a></h4>
 
by <a href="http://blogmarks.net/user/pvergain">pvergain</a> 
<p class="description">A few years ago I «fell in love» with Python , which is a dynamically typed interactive, object oriented scripting language. With a few extensions I found it very suitable for efficient visualization and problem solving in Scientific computing. So can it replace Matlab? For me its pretty close! For you? It depends on your needs, but have a look!

Why I use Python

    * Python is a small, high level scripting language that sits on top of a efficient C library. Because of this, Python code is compact, and the resulting code can run at a speed close to C if the computationally intensive parts are done via library calls.
    * Short learning curve - I was almost instantly productive.
    * Python can be used interactively (like matlab), and documentation for most functions can be accessed via a built in help facility.
    * It is free (also in this regard)
    * The syntax invites you to write clean code. No ;'s at the end of lines, the block structure is described by indentation instead of Begin-End or {..}. Through the Numeric/numarray modules one gets powerful array syntax - inspired by languages such as Fortran 90, Matlab, Octave, Yorick etc. Python itself has also borrowed features from e.g. Lisp, with its interactivity and built in support for list manipulation.
    * Python has many other useful modules built in, one may for instance write a web server in just a few lines of code or work transparently with gzipped files (handy for analyzing large ascii data files)
    * Linking in and reusing Fortran subroutines is very easy using e.g. f2py mentioned below, or the Pyfort module found on www.python.org. Integration with C is of course even tighter since the most popular python is written in C. (yes. there is a java python...)
    * It is possible to work in single precision, which is sufficient for most scientific purposes. This makes it easier to work with large datasets/arrays using only half the memory compared to e.g. matlab. 

As my basic setup I use Python with the following extensions:
Numpy: a.k.a. Numeric python, contain the advanced array syntax, as well as powerful and commonly used functions that can be applied to the multi dimensional arrays.

Pygist: Gist is a very fast graphics library for 2D and 3D plots written directly for X11, but also ported to Mac and Windows. Gist is a part of the Yorick language. Pygist contain the Python bindings, read about it here. A recent version of Pygist can be found here. Pygist is currently also a part of a distribution of Python packages called Scipy, that can be found here.

f2py: Makes connecting Fortran subroutines a breeze! Also a part of Scipy. A complete example: wrap this subroutine in a Python function returning "dist":

[avle@tindved test]$ cat r1.f90
subroutine r1(x,y,n,dist)
  real x(n),y(n)
!f2py intent(out) dist
  xl=0.0 ; yl=0.0 ; vp=0.0
  do i=1,n
     xl=xl + x(i)**2 ;  yl=yl + y(i)**2
     vp=vp + x(i)*y(i)
  end do
  if(vp>=0.0)then
    dist = acos(sqrt(vp/(xl*yl)))
  else
    dist = 4*atan(1.0)-acos(sqrt(-vp/(xl*yl)))
  end if
end subroutine r1

[avle@tindved test]$ ls
r1.f90
[avle@tindved test]$ f2py -c -m r1 --fcompiler=g95 r1.f90
..lots of output...
[avle@tindved test]$ ls
r1.f90  r1.so*
[avle@tindved test]$ python2
Python 2.2.3 (#1, Feb 15 2005, 02:41:06) 
[GCC 3.2.3 20030502 (Red Hat Linux 3.2.3-49)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import Numeric as nx, r1
>>> a=nx.array((2.3,2.2)) ; b=nx.array((3.2,2.1))
>>> r1.r1(a,b)
1.2827057838439941
>>> 
</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/bibliotheques">bibliotheques</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057395544">Copy</a> | 
<a href="http://blogmarks.net/link/2399736">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/zoofusa/mark/2499613">
<title>axis 241q video server</title>
<link>http://crazypictures.topvotedvideos.org/axis-241q-video-server/archive_14_2007.php</link>
<description>axis 241q video server</description>
<dc:date>2007-04-07T21:42:51Z</dc:date>
<dc:author>zoofusa</dc:author>
<dc:subject>street, functions, axis, club, server, function, matlab, video, reference, main</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://crazypictures.topvotedvideos.org/axis-241q-video-server/archive_14_2007.php"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://crazypictures.topvotedvideos.org/axis-241q-video-server/archive_14_2007.php">axis 241q video server</a></h4>
 
by <a href="http://blogmarks.net/user/zoofusa">zoofusa</a> 
<p class="description">axis 241q video server</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/street">street</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/functions">functions</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/axis">axis</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/club">club</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/server">server</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/function">function</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/video">video</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/reference">reference</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/main">main</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=2499613">Copy</a> | 
<a href="http://blogmarks.net/link/2052230">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/zoofusa/mark/2499614">
<title>axis 241q video server</title>
<link>http://crazypictures.topvotedvideos.org/axis-241q-video-server/2007/04/axis-q-video-server-axis-functions-matlab-function-reference.php</link>
<description>axis 241q video server</description>
<dc:date>2007-04-07T21:42:39Z</dc:date>
<dc:author>zoofusa</dc:author>
<dc:subject>street, functions, britney, axis, club, hosting, server, function, matlab, video</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://crazypictures.topvotedvideos.org/axis-241q-video-server/2007/04/axis-q-video-server-axis-functions-matlab-function-reference.php"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://crazypictures.topvotedvideos.org/axis-241q-video-server/2007/04/axis-q-video-server-axis-functions-matlab-function-reference.php">axis 241q video server</a></h4>
 
by <a href="http://blogmarks.net/user/zoofusa">zoofusa</a> 
<p class="description">axis 241q video server</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/street">street</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/functions">functions</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/britney">britney</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/axis">axis</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/club">club</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/hosting">hosting</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/server">server</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/function">function</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/video">video</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=2499614">Copy</a> | 
<a href="http://blogmarks.net/link/2052231">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/lefty/mark/2287801">
<title>Introduction a Matlab</title>
<link>http://maths2.univ-brest.fr/~balac/matlab/node8.html</link>
<description></description>
<dc:date>2007-03-16T14:45:50Z</dc:date>
<dc:author>lefty</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://maths2.univ-brest.fr/~balac/matlab/node8.html"><img border="0" src="http://blogmarks.net/screenshots/2007/03/16/d540a060c1f5f06c0f2e6bf49e051339.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://maths2.univ-brest.fr/~balac/matlab/node8.html">Introduction a Matlab</a></h4>
 
by <a href="http://blogmarks.net/user/lefty">lefty</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=2287801">Copy</a> | 
<a href="http://blogmarks.net/link/1903065">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/wasteland93/mark/2203922">
<title>The MathWorks - Documentation</title>
<link>http://www.mathworks.com/access/helpdesk_r13/help/helpdesk.html</link>
<description></description>
<dc:date>2007-03-07T07:38:20Z</dc:date>
<dc:author>wasteland93</dc:author>
<dc:subject>documentation, matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.mathworks.com/access/helpdesk_r13/help/helpdesk.html"><img border="0" src="http://blogmarks.net/screenshots/2007/03/07/7d7ea2a41429b51ed693c65249cc7dc7.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.mathworks.com/access/helpdesk_r13/help/helpdesk.html">The MathWorks - Documentation</a></h4>
 
by <a href="http://blogmarks.net/user/wasteland93">wasteland93</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/documentation">documentation</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=2203922">Copy</a> | 
<a href="http://blogmarks.net/link/1844895">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Guillom/mark/1948367">
<title>Génération de signaux sous Matlab</title>
<link>http://gil.69.free.fr/Matlab/Genesig/</link>
<description>explication chgmt d'échelle</description>
<dc:date>2007-02-05T09:36:38Z</dc:date>
<dc:author>Guillom</dc:author>
<dc:subject>fft, matlab, points, fourier</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://gil.69.free.fr/Matlab/Genesig/"><img border="0" src="http://blogmarks.net/screenshots/2007/02/05/2b7382575b4f7c53a3b6ea098ad363f9.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://gil.69.free.fr/Matlab/Genesig/">Génération de signaux sous Matlab</a></h4>
 
by <a href="http://blogmarks.net/user/Guillom">Guillom</a> 
<p class="description">explication chgmt d'échelle</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/fft">fft</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/points">points</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/fourier">fourier</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1948367">Copy</a> | 
<a href="http://blogmarks.net/link/1662173">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165152">
<title>Matlab Clones</title>
<link>http://www.dspguru.com/sw/opendsp/mathclo.htm</link>
<description></description>
<dc:date>2006-10-19T02:05:43Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.dspguru.com/sw/opendsp/mathclo.htm"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.dspguru.com/sw/opendsp/mathclo.htm">Matlab Clones</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165152">Copy</a> | 
<a href="http://blogmarks.net/link/1208341">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165153">
<title>matlab animation</title>
<link>http://del.icio.us/tag/matlab</link>
<description></description>
<dc:date>2006-10-19T02:04:29Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://del.icio.us/tag/matlab"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://del.icio.us/tag/matlab">matlab animation</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165153">Copy</a> | 
<a href="http://blogmarks.net/link/1208342">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165227">
<title>MATLAB Function Reference</title>
<link>http://www.mathworks.com/access/helpdesk/help/techdoc/ref/index.html?/access/helpdesk/help/techdoc/ref/matlabunix.html</link>
<description></description>
<dc:date>2006-09-28T15:41:42Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/index.html?/access/helpdesk/help/techdoc/ref/matlabunix.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/index.html?/access/helpdesk/help/techdoc/ref/matlabunix.html">MATLAB Function Reference</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165227">Copy</a> | 
<a href="http://blogmarks.net/link/1208403">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/YukuanBlog/mark/977318">
<title>Dynamic Plot on Python</title>
<link>http://yukuan.blogspot.com/2006/09/dynamic-plot-on-python.html</link>
<description>之前介紹 Python 在複雜網路模擬實驗的應用時，曾提到用 Matplotlib 來繪製該實驗的圖表。其模仿 Matlab 的繪圖功能，用起來方便，所繪製的圖也在水準之上。有圖有真相，這就秀秀用 Matplotlib 為該實驗繪製的兩張圖表：</description>
<dc:date>2007-05-26T06:58:34Z</dc:date>
<dc:author>YukuanBlog</dc:author>
<dc:subject>plot, matlab, programming, python, scientific</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://yukuan.blogspot.com/2006/09/dynamic-plot-on-python.html"><img border="0" src="http://blogmarks.net/screenshots/2007/05/26/3c2d82702601adcfb1376a564132da2a.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://yukuan.blogspot.com/2006/09/dynamic-plot-on-python.html">Dynamic Plot on Python</a></h4>
 
by <a href="http://blogmarks.net/user/YukuanBlog">YukuanBlog</a> 
<p class="description">之前介紹 Python 在複雜網路模擬實驗的應用時，曾提到用 Matplotlib 來繪製該實驗的圖表。其模仿 Matlab 的繪圖功能，用起來方便，所繪製的圖也在水準之上。有圖有真相，這就秀秀用 Matplotlib 為該實驗繪製的兩張圖表：</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/plot">plot</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/programming">programming</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/scientific">scientific</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=977318">Copy</a> | 
<a href="http://blogmarks.net/link/1119526">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/YukuanMark/mark/1146374">
<title>NumPy for Matlab Users - SciPy.org</title>
<link>http://www.scipy.org/NumPy_for_Matlab_Users</link>
<description>MATLAB® and NumPy/SciPy have a lot in common. But there are many differences. NumPy and SciPy were created to do numerical and scientific computing in the most natural way with Python, not to be MATLAB® clones. This page is intended to be a place to col</description>
<dc:date>2006-09-19T00:06:59Z</dc:date>
<dc:author>YukuanMark</dc:author>
<dc:subject>python, numpy, matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.scipy.org/NumPy_for_Matlab_Users"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.scipy.org/NumPy_for_Matlab_Users">NumPy for Matlab Users - SciPy.org</a></h4>
 
by <a href="http://blogmarks.net/user/YukuanMark">YukuanMark</a> 
<p class="description">MATLAB® and NumPy/SciPy have a lot in common. But there are many differences. NumPy and SciPy were created to do numerical and scientific computing in the most natural way with Python, not to be MATLAB® clones. This page is intended to be a place to col</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/numpy">numpy</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1146374">Copy</a> | 
<a href="http://blogmarks.net/link/1198303">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165290">
<title>3D reconstruction</title>
<link>http://www.nbb.cornell.edu/neurobio/land/PROJECTS/Reconstruction/index.html</link>
<description></description>
<dc:date>2006-08-28T11:55:33Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.nbb.cornell.edu/neurobio/land/PROJECTS/Reconstruction/index.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.nbb.cornell.edu/neurobio/land/PROJECTS/Reconstruction/index.html">3D reconstruction</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165290">Copy</a> | 
<a href="http://blogmarks.net/link/1208455">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165298">
<title>A Practical Introduction to Matlab (Updated for Matlab 5)</title>
<link>http://www.math.mtu.edu/~msgocken/intro/intro.html</link>
<description></description>
<dc:date>2006-08-26T16:03:25Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.math.mtu.edu/~msgocken/intro/intro.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.math.mtu.edu/~msgocken/intro/intro.html">A Practical Introduction to Matlab (Updated for Matlab 5)</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165298">Copy</a> | 
<a href="http://blogmarks.net/link/1208463">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165316">
<title>A Partial List of On-Line Matlab Tutorials</title>
<link>http://www.duke.edu/~hpgavin/matlab.html</link>
<description></description>
<dc:date>2006-08-20T22:59:24Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.duke.edu/~hpgavin/matlab.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.duke.edu/~hpgavin/matlab.html">A Partial List of On-Line Matlab Tutorials</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165316">Copy</a> | 
<a href="http://blogmarks.net/link/1208474">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165370">
<title>Camera Calibration Toolbox for Matlab</title>
<link>http://www.vision.caltech.edu/bouguetj/calib_doc/#examples</link>
<description></description>
<dc:date>2006-08-04T04:29:49Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.vision.caltech.edu/bouguetj/calib_doc/#examples"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.vision.caltech.edu/bouguetj/calib_doc/#examples">Camera Calibration Toolbox for Matlab</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165370">Copy</a> | 
<a href="http://blogmarks.net/link/1208520">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165371">
<title>Spider</title>
<link>http://www.kyb.tuebingen.mpg.de/bs/people/spider/main.html</link>
<description></description>
<dc:date>2006-08-04T04:25:13Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.kyb.tuebingen.mpg.de/bs/people/spider/main.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.kyb.tuebingen.mpg.de/bs/people/spider/main.html">Spider</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165371">Copy</a> | 
<a href="http://blogmarks.net/link/1208521">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ponsfrilus/mark/906916">
<title>External Interfaces/API, MATLAB Version 7.2 (R2006a) :: (MATLAB Release Notes)</title>
<link>http://www.mathworks.com/access/helpdesk/help/techdoc/rn/r2006a_v7_2_external.html</link>
<description></description>
<dc:date>2006-08-02T15:26:52Z</dc:date>
<dc:author>ponsfrilus</dc:author>
<dc:subject>ponsfrilus, matlab, obsolete, fonction</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.mathworks.com/access/helpdesk/help/techdoc/rn/r2006a_v7_2_external.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.mathworks.com/access/helpdesk/help/techdoc/rn/r2006a_v7_2_external.html">External Interfaces/API, MATLAB Version 7.2 (R2006a) :: (MATLAB Release Notes)</a></h4>
 
by <a href="http://blogmarks.net/user/ponsfrilus">ponsfrilus</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ponsfrilus">ponsfrilus</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/obsolete">obsolete</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/fonction">fonction</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=906916">Copy</a> | 
<a href="http://blogmarks.net/link/1101794">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165407">
<title>Octave Compatibility FAQ</title>
<link>http://octave.sourceforge.net/compatibility.html</link>
<description></description>
<dc:date>2006-07-29T16:40:51Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://octave.sourceforge.net/compatibility.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://octave.sourceforge.net/compatibility.html">Octave Compatibility FAQ</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165407">Copy</a> | 
<a href="http://blogmarks.net/link/1208550">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/topcool/mark/673434">
<title>《MATLAB R2006a 2006版》[Bin] | 软件 → 应用软件 | VeryCD → 下载</title>
<link>http://lib.verycd.com/2006/03/20/0000095143.html</link>
<description></description>
<dc:date>2006-07-01T08:25:31Z</dc:date>
<dc:author>topcool</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://lib.verycd.com/2006/03/20/0000095143.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://lib.verycd.com/2006/03/20/0000095143.html">《MATLAB R2006a 2006版》[Bin] | 软件 → 应用软件 | VeryCD → 下载</a></h4>
 
by <a href="http://blogmarks.net/user/topcool">topcool</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=673434">Copy</a> | 
<a href="http://blogmarks.net/link/951613">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/wasteland93/mark/633291">
<title>The French BNT Site</title>
<link>http://bnt.insa-rouen.fr/</link>
<description></description>
<dc:date>2006-06-14T20:33:54Z</dc:date>
<dc:author>wasteland93</dc:author>
<dc:subject>matlab, gm, dev</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://bnt.insa-rouen.fr/"><img border="0" src="http://www.blogmarks.net/screenshots/2006/06/15/ceff6b239658c1e9d9683a52039619a0.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://bnt.insa-rouen.fr/">The French BNT Site</a></h4>
 
by <a href="http://blogmarks.net/user/wasteland93">wasteland93</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/gm">gm</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/dev">dev</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=633291">Copy</a> | 
<a href="http://blogmarks.net/link/923865">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165460">
<title>Peter's Functions for Computer Vision</title>
<link>http://www.csse.uwa.edu.au/~pk/Research/MatlabFns/</link>
<description></description>
<dc:date>2006-06-13T01:48:46Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.csse.uwa.edu.au/~pk/Research/MatlabFns/"><img border="0" src="http://www.blogmarks.net/screenshots/2005/08/20/18fd9619e3b40bcd86fd0c113aad10c5.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.csse.uwa.edu.au/~pk/Research/MatlabFns/">Peter's Functions for Computer Vision</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/203287">1 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165460">Copy</a> | 
<a href="http://blogmarks.net/link/203287">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/wasteland93/mark/558520">
<title>Bayes Net Toolbox for Matlab</title>
<link>http://bnt.sourceforge.net/</link>
<description></description>
<dc:date>2006-06-14T20:35:11Z</dc:date>
<dc:author>wasteland93</dc:author>
<dc:subject>science, computer, dev, gm, matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://bnt.sourceforge.net/"><img border="0" src="http://www.blogmarks.net/screenshots/2006/06/15/9149f9398142133ce129447c301ba3ae.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://bnt.sourceforge.net/">Bayes Net Toolbox for Matlab</a></h4>
 
by <a href="http://blogmarks.net/user/wasteland93">wasteland93</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/science">science</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/computer">computer</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/dev">dev</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/gm">gm</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=558520">Copy</a> | 
<a href="http://blogmarks.net/link/864250">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ponsfrilus/mark/654361">
<title>Use php to start matlab script</title>
<link>http://www.zend.com/codex.php?id=949&amp;single=1</link>
<description>set data in PHP and start matlab script - run matlab script - read data from matlab script and redirect to php page - display result in php</description>
<dc:date>2006-05-22T06:35:58Z</dc:date>
<dc:author>ponsfrilus</dc:author>
<dc:subject>php, ponsfrilus, matlab</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.zend.com/codex.php?id=949&amp;single=1"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.zend.com/codex.php?id=949&amp;single=1">Use php to start matlab script</a></h4>
 
by <a href="http://blogmarks.net/user/ponsfrilus">ponsfrilus</a> 
<p class="description">set data in PHP and start matlab script - run matlab script - read data from matlab script and redirect to php page - display result in php</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/php">php</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ponsfrilus">ponsfrilus</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=654361">Copy</a> | 
<a href="http://blogmarks.net/link/938697">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/redivider/mark/1165539">
<title>ICALAB for Image Processing - MATLAB Toolbox for ICA, BSS and BSE</title>
<link>http://www.bsp.brain.riken.jp/ICALAB/ICALABImageProc/</link>
<description></description>
<dc:date>2006-05-21T19:51:58Z</dc:date>
<dc:author>redivider</dc:author>
<dc:subject>matlab, image_processing</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.bsp.brain.riken.jp/ICALAB/ICALABImageProc/"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.bsp.brain.riken.jp/ICALAB/ICALABImageProc/">ICALAB for Image Processing - MATLAB Toolbox for ICA, BSS and BSE</a></h4>
 
by <a href="http://blogmarks.net/user/redivider">redivider</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/matlab">matlab</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/image_processing">image_processing</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1165539">Copy</a> | 
<a href="http://blogmarks.net/link/1208662">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> </rdf:RDF>