Ivan Sutoris
Ivan Sutoris
The generated function handle in MATLAB reads as ``` fnum = @(in1,in2) in2(1,:).*in1(1,:).^2+in2(2,:).*in1(2,:).^2 ``` so it seems that if one passes cell array with column vectors of symbols to `matlabFunction`,...
> I suggest we: > - change the issue title to something more descriptive. > - change the function_handle.m documentation to note that we don't yet support this. > -...
Yes, looks like it does. Relevant [docs](http://www.mathworks.com/help/symbolic/matlabfunction.html#namevaluepairarguments): > ['Vars':] Order of input variables or vectors in generated MATLAB function, specified as a cell array of strings or symbolic arrays, or...
Thanks for the pointer. After looking at those lines, it does seem like they are always trying to fill first two columns of the `out` matrix, but if n=1 then...