<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to patches</title><link href="https://sourceforge.net/p/freemat/patches/" rel="alternate"/><link href="https://sourceforge.net/p/freemat/patches/feed.atom" rel="self"/><id>https://sourceforge.net/p/freemat/patches/</id><updated>2015-06-19T13:36:58.447000Z</updated><subtitle>Recent changes to patches</subtitle><entry><title>#51 Contribution of residue.m function</title><link href="https://sourceforge.net/p/freemat/patches/51/?limit=25#5e14" rel="alternate"/><published>2015-06-19T13:36:58.447000Z</published><updated>2015-06-19T13:36:58.447000Z</updated><author><name>Dominic Grenier</name><uri>https://sourceforge.net/u/docgrenier/</uri></author><id>https://sourceforge.net38b558d4b8e84e5a854a2abe9768ad5e35ab6300</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Function deconv.m&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Contribution of residue.m function</title><link href="https://sourceforge.net/p/freemat/patches/51/" rel="alternate"/><published>2015-06-18T20:07:56.063000Z</published><updated>2015-06-18T20:07:56.063000Z</updated><author><name>Dominic Grenier</name><uri>https://sourceforge.net/u/docgrenier/</uri></author><id>https://sourceforge.netacb8af0dec006210afb4c725a2bd0e729090c543</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I'm contributing to the function residue.m for use in FreeMat. Written to maintain MATLAB compatiblity.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Contribution of filter and findpeaks functions</title><link href="https://sourceforge.net/p/freemat/patches/50/" rel="alternate"/><published>2014-06-11T17:16:39.680000Z</published><updated>2014-06-11T17:16:39.680000Z</updated><author><name>jonw0224</name><uri>https://sourceforge.net/u/jonw0224/</uri></author><id>https://sourceforge.net37ef9c0fa49a99517e0edeb26b2bb85d67ada1e4</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Implementation of filter function and findpeaks function.  Both are a subset of the MATLAB function capability, but a good start.&lt;/p&gt;
&lt;p&gt;-Jonathan&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Serial Port Functionality Contribution</title><link href="https://sourceforge.net/p/freemat/patches/49/" rel="alternate"/><published>2014-05-08T20:51:59.323000Z</published><updated>2014-05-08T20:51:59.323000Z</updated><author><name>jonw0224</name><uri>https://sourceforge.net/u/jonw0224/</uri></author><id>https://sourceforge.net85dbe6980af5db54d33afd9c84f173e8fc510b5a</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Contribution of a set of functions and dll's to handle serial port communications.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#48 Contribution of functions</title><link href="https://sourceforge.net/p/freemat/patches/48/?limit=25#8477" rel="alternate"/><published>2014-05-08T20:50:10.535000Z</published><updated>2014-05-08T20:50:10.535000Z</updated><author><name>jonw0224</name><uri>https://sourceforge.net/u/jonw0224/</uri></author><id>https://sourceforge.net46ffecf8c4c79414107e8a7f29a75e970ec834ae</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Also, trapz and cumtrapz.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Contribution of functions</title><link href="https://sourceforge.net/p/freemat/patches/48/" rel="alternate"/><published>2014-05-08T20:45:50.388000Z</published><updated>2014-05-08T20:45:50.388000Z</updated><author><name>jonw0224</name><uri>https://sourceforge.net/u/jonw0224/</uri></author><id>https://sourceforge.net8fd4bd7a381e23616bacd14dd4f13f606af2c7e5</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I'm contributing functions for use in FreeMat.  Written to maintain MATLAB compatiblity.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Jonathan&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Jet colormap </title><link href="https://sourceforge.net/p/freemat/patches/47/" rel="alternate"/><published>2013-07-21T15:29:38.453000Z</published><updated>2013-07-21T15:29:38.453000Z</updated><author><name>Niko Große-Heilmann</name><uri>https://sourceforge.net/u/nikogh/</uri></author><id>https://sourceforge.neteb254413cca8cadb559efd947ef6ea80d932a6dc</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Jet colormap was missing for me, so I created one. Maybe You can use it.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>numerical integration by Simpson's rule</title><link href="https://sourceforge.net/p/freemat/patches/46/" rel="alternate"/><published>2013-05-12T07:45:06Z</published><updated>2013-05-12T07:45:06Z</updated><author><name>israel</name><uri>https://sourceforge.net/u/matusr/</uri></author><id>https://sourceforge.netf96278c520ceac6d6ef9777cbba709c27e2156ab</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The attached file is a function that numerically integrates any given anonymous function (fx),   using Simpson's rule, which is more accurate than the trapeziodal rule (accuracy: dx^4),  it includes an explicit help&lt;br /&gt;
Example:&lt;br /&gt;
integrate the function 1/x between 1 and 2&lt;br /&gt;
using 30 intervals gives as a result 0.693147 ( the exact value is the same up to 6 places)&lt;br /&gt;
the m-function call is:&lt;br /&gt;
Outp=simpson_integ(fx),&lt;br /&gt;
where fx=@x  1./x for the example above, the rest of the inputs are asked for on-line&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Make SVN 4335 work with LLVM 3.1</title><link href="https://sourceforge.net/p/freemat/patches/45/" rel="alternate"/><published>2012-08-01T21:01:08Z</published><updated>2012-08-01T21:01:08Z</updated><author><name>Andre Barros</name><uri>https://sourceforge.net/u/andrecbarros/</uri></author><id>https://sourceforge.net4da1fc6807ada570da5c030611c0488f5563f333</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Just a patch to make FreeMat svn4335 work with llvm 3.1. Tested on openSUSE 11.4.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>meshgrid</title><link href="https://sourceforge.net/p/freemat/patches/44/" rel="alternate"/><published>2012-06-21T08:48:36Z</published><updated>2012-06-21T08:48:36Z</updated><author><name>Christian Felter</name><uri>https://sourceforge.net/u/c174/</uri></author><id>https://sourceforge.netc2afc76f0ef96fb80947429fa020a598661620e0</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;meshgrid did not handle 2 input arguments correctly.&lt;/p&gt;
&lt;p&gt;nargout was used instead of nargin in if-else clause.&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>