How can I create vector for values in the range -π < θ < π ?
Mostrar comentarios más antiguos
How can I create vector for values in the range -π < θ < π ?
Respuesta aceptada
Más respuestas (1)
T = -pi:0.01:pi
This kind of very basic MATLAB usage is introduced in the introductory tutorials:
3 comentarios
Somaya Alaa
el 27 de Nov. de 2016
S = 0.01;
T = S-pi:S:pi-S;
Somaya Alaa
el 27 de Nov. de 2016
Categorías
Más información sobre Matrices and Arrays 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!