MATLAB: How to plot a trigonometric function and a linear functions on the same graph to work out solutions to trigonometric equations

functionsgraphMATLABsin

please could someone explain how to plot the above

Best Answer

Try
plot(t,y1,t,y2*ones(size(t)))
for example.
Related Question