i keep getting syntax error please help
Mostrar comentarios más antiguos
x_p = -0.3906sin(0.559t) + 156.25cos(0.559t); % steady-state motion
Respuestas (1)
Luca Ferro
el 1 de Mayo de 2023
to multiply you have to use *.
Assuming you defined or sym t,
x_p = -0.3906*sin(0.559*t) + 156.25*cos(0.559*t);
Categorías
Más información sobre Formula Manipulation and Simplification en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!