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

조회 수: 29 (최근 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