Le 23/01/2016 10:34, eddydde a écrit :
that's not the solution to my problem:

the last two function calls in which i use xa(1x11) as first argument and
three parameters (a1.a2,a3 or d.aa(1,:)) !

here i get an 11x1 result with the wrong(?) three parameters
When xa is a vector,  T is a vector in the function, and then the line
     t=x(1)-x(2)/(T+x(3))
performs a matricial division. If you want to perform a element-wise division, the syntax is
     t = x(1) - x(2) ./ (T+x(3)) // with ./ instead of /

Regards
Samuel Gougeon

_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users

Reply via email to