2011/10/10 Rudy Eschauzier <reschauz...@yahoo.com>:
> Attached are updated files for the impulse invariance transform and its
> inverse. I have also attached a diff file against the current svn revision.
>
> These are the changes:
> -impinvar and invimpinvar now include test cases.
> -bug fixes
> -code optimization (vectorization)
>
> Please let me know if you have any questions.


Hi Rudy

I noticed that on your update, you make the following change

   ## respect the required tolerance values
-  b_out(abs(b_out)<tol) = [];
-  a_out(abs(a_out)<tol) = [];
+  b_out(abs(b_out)<tol) = 0;
+  a_out(abs(a_out)<tol) = 0;

previously, the code would remove/truncate values below the tolerance
value, but your change only turns them into zero. Is this compatible
with matlab's impinvar? I do not have access to any machine with
matlab so I only googled for classes online using impinvar and the
expected results to mimic this. Are you sure of this change?

Carnë

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2d-oct
_______________________________________________
Octave-dev mailing list
Octave-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to