|
From: | Lukas Reichlin |
Subject: | Re: My first contribution to Octave |
Date: | Sat, 4 Jul 2009 00:17:59 +0200 |
You are right, I forgot the most important feature of every software: documentation :-) For the Package Reference: [sigma_min, sigma_max, w] = svplot (sys, w) If no output arguments are given: The singular value plot of a MIMO system over a range of frequencies is printed on the screen. Otherwise, the singular values of the system data structure are computed and returned. Inputs sys system data structure (must be either purely continuous or discrete; see is_digital) w Optional vector of frequency values. If w is not specified, it will be calculated by bode_bounds Outputs sigma_min Vector of minimal singular values sigma_max Vector of maximal singular values w Vector of frequency values used For the file itself: function [sigma_min, sigma_max, w] = svplot (sys, w) ! ## Usage: svplot (sys) ! ## -or- svplot (sys, w) ! ## Where: ! ## sys is a MIMO system ! ## w is an optional frequency vector ! ## ! ## If w is not specified, it will be calculated by bode_bounds. ! ## ! ## If no output arguments are given: ! ## The singular value plot of a MIMO system over a range ! ## of frequencies is printed on the screen. ! ## Otherwise, the singular values of the system data structure ! ## are computed and returned ! ## ! ## Lukas Reichlin <address@hidden> ! No, I don't think we should reference Matlab, because it would be unusual in the OCST Manual. Regards, Lukas |
[Prev in Thread] | Current Thread | [Next in Thread] |