<div dir="ltr"><div><div>Hi,<br><br></div>Let's take fft as an example.<br><br></div><div>In scilab 5 one could call fft specifying parameters like dim and incr by name,<br><br></div><div>fft(A,-1,dim=100,incr=1)<br><br></div><div>Codes that used to work in scilab 5 now gives wrong results (no error messages!) in scilab 6 because the new release ignores named parameters. To get expected results with scilab 6, one should recast the command above as,<br><br></div><div>fft(A,-1,100,1)<br><br></div><div>otherwise scilab 6 reads <br><br></div><div>fft(A,-1)<br><br></div><div>instead!<br></div><div><br></div><div>What for ignoring parameter names? Also, I have some scilab codes where functions do accept names and take different actions accordingly. Should I <br></div><div>change all these codes to use scilab 6?<br><br></div><div>Thanks<br></div></div>