Follow-up Comment #3, bug #35245 (project octave):

tf2zp, zp2tf and about a dozen of similar x2y commands are part of Matlab's
Signal Processing Toolbox:
http://www.mathworks.ch/help/toolbox/signal/ref/f9-131178c.html

Therefore I won't add them to the Octave control package. If you need them,
you can add wrappers like the one below to the Octave signal package:


function [z, p, k] = tf2zp (varargin)

  [z, p, k] = zpkdata (tf (varargin{:}));

endfunction


For some reasons, signal already requires control (>= 0.0.0) which means that
no new dependency would be introduced.

Regards,
Lukas

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?35245>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/


------------------------------------------------------------------------------
Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
infrastructure or vast IT resources to deliver seamless, secure access to
virtual desktops. With this all-in-one solution, easily deploy virtual 
desktops for less than the cost of PCs and save 60% on VDI infrastructure 
costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox
_______________________________________________
Octave-dev mailing list
Octave-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to