MATLAB: Plot on the same figure

equationMATLABplottingsymbolicSymbolic Math Toolbox

MATLAB commands to plot, on the same figure
f=3*(t^2) + 2*t – 0.5
g=2*t*(cos(t))

Best Answer

syms t
f=3*(t^2) + 2*t - 0.5
g=2*t*(cos(t))
fplot({f,g})