plot function in matlab?

2 次查看(过去 30 天)
I want to plot qi=q0+3*(qf-q0)*t^2-2*(qf-q0)*t^3 as defined in the picture.i use plot or ez plot but the figure that is drawn is not correct.
q0=10(degree)
qf=-20(degree)
t=0 to 1 second
  2 个评论
KALYAN ACHARJYA
KALYAN ACHARJYA 2018-8-5
编辑:KALYAN ACHARJYA 2018-8-5
Check the answer, I have edited. Pls confirm?
Jan
Jan 2018-8-5
@Najmeh Eskandari: Please post your code and the output. Then explain what "not correct" means, such that we can give you an advice how to improve your code.

请先登录,再进行评论。

采纳的回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2018-8-5
编辑:KALYAN ACHARJYA 2018-8-5
q_o=10;
qf=-20;
t=0:.1:1;
qi=q_o+3*(qf-q_o)*t.^2-2*(qf-q_o)*t.^3;
plot(t,qi);
title('Cubic Polynomial Trajectory');
xlabel('Time(sec)'); ylabel('Angle(deg)');

更多回答(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