<p>Dear all,<br /><br />As said in the nyquist help instruction, it is possible to get a nyquist plan using this instruction<br /><br />nyquist( sl,[fmin,fmax] [,step] [,comments] [,symmetry])<br /><br />... and this example in the same doc :<br /><br />nyquist([Plant;Plant*PID],0.5,100,["Plant";"Plant and PID corrector"]);<br /><br />Here, we see that s1 can be a vectorized siso. Also, the legend is vectorized in the same size.<br /><br />Perfect.<br /><br />But 0.5 and 100 are not vectorize, and as to stay in final in a same quarter, as hope, I need to impose min <br />and mas for h1, h2, h3 ...hn on the siso matrix.<br /><br />But this is not the case for fmin and fmax, even if it is described in the documentation:<br /><br />"The frequencies are given by the bounds fmin,fmax (in Hz) <br />or by a row-vector (or a matrix for multi-output) frq"<br /><br />It doesn't work, I get error, and I'm not able to precise each min and max in that syntax,<br />even if it is easy to get these one for each component in a loop with the vectorized siso,<br />using the instruction :<br /><br />[fmin,fmax]=nyquistfrequencybounds(hi,bounds)<br />Correct with only one transfer function.<br /><br />The aim is to plot the legend.<br />That work here, but representation is bad due to the not vectorized fmin fmax<br />Imagine an isoview (-1,-1, 1 ,1)<br /><br />I can control the min max in a quater if I plot each member one after one,in a loop but in this case I'm not enable<br />to set any the relevant legend<br />Is there a solution ? May be in scilab 6.1.0 ?<br /><br />I look for a syntax as :<br />[nyquist([h1;h2], [[fminh1, fminh2);[fmaxh1, fmaxh2]],["h1";"h2"])<br />or, better :<br />[nyquist([h1;h2], [fminh1, fminh2],[fmaxh1, fmaxh2],["h1";"h2"])<br /><br />Best regard</p>