What I have:
syms X Y funcF = [ (X.^2 + Y.^2 + X -4), (Y*cos(X) + X*Y.^3 - 1) ] z0 = [0.5, 2] Say I want to pass z0 to funcF, I'm not sure how to do this. (My knowledge of matlab isn't the greatest)
So I'm currently trying:
funcF = funcF(z0) Essentially, I want it to print something like this:
[#1 #2]