plot function in matlab?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Najmeh Eskandari
el 5 de Ag. de 2018
Comentada: Jan
el 5 de Ag. de 2018
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 comentarios
KALYAN ACHARJYA
el 5 de Ag. de 2018
Editada: KALYAN ACHARJYA
el 5 de Ag. de 2018
Check the answer, I have edited. Pls confirm?
Jan
el 5 de Ag. de 2018
@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.
Respuesta aceptada
KALYAN ACHARJYA
el 5 de Ag. de 2018
Editada: KALYAN ACHARJYA
el 5 de Ag. de 2018
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)');
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!