How can I change all negative angles in 20 x 5000 cells to positive? i.e. -167deg. to 193deg.

9 visualizaciones (últimos 30 días)
Hi, I am new to MATLAB. Please see the title.
I need to keep the positives unchanged.
Cheers,
Ed

Respuesta aceptada

Guillaume
Guillaume el 25 de Feb. de 2016
The modulo operation is your friend:
angles = [-167 0; 90 -270] %for example
angles = mod(angles, 360)

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by