I want to use fzero to minimise a function of many variables, but with only one variable to be minimised. The other are just constants. In MATLAB I would do this by using something like :
x=fzero(@(x) myfun(x,a,b,c),x0)
where x is the variable to be minimised.
Unfortunately MathScript doesn't seem to accept the handle @, which leaves me stuck. Any ideas how to get round this problem?
Many thanks,
Steve.