How to plot graphs of sine and cosine functions on the same coordinate plane using matlab

30 Ansichten (letzte 30 Tage)
Ploting graphs using matlab

Akzeptierte Antwort

Mil Shastri
Mil Shastri am 19 Feb. 2020
use the 'hold on' command. For example:
t=1:0.1:10
plot(t,sin(t))
hold on;
plot(t,cos(t))

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by