MATLAB: I can’t view the solution. if anyone could guide me, I would be thankful.

symfun

syms t x y assume(t>0)
a= solve([x-t==0,y-0.5*t.^2==0])

Best Answer

solve() return a struct. View the values using field names and dot notation
disp(a.x)
disp(a.y)
Related Question