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

23 次查看(过去 30 天)
Ploting graphs using matlab

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by