sin function gives straight line when plotting

조회 수: 6 (최근 30일)
Akasha Sage
Akasha Sage 2019년 2월 27일
답변: Star Strider 2019년 2월 27일
when plotting
x = [0 50];
y1 = 0.25*x.*sin(x);
y2 = 0.25*x;
y3 = -0.25*x;
plot(x,y1,x,y2,'--',x,y3,'--')
i get a straight line for y1, it should be oscillating between y2 and y3. what am i doing wrong?

답변 (1개)

Star Strider
Star Strider 2019년 2월 27일
You are only plotting two points, at x=0 and x=50.
Try this instead:
x = linspace(0, 50);
y1 = 0.25*x.*sin(x);
y2 = 0.25*x;
y3 = -0.25*x;
plot(x,y1,x,y2,'--',x,y3,'--')

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by