converting from radian to degree
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how to convert a (plot) in radian to degree,,,
2 Commenti
Arco
il 18 Apr 2014
to convert from radian to degree just multiply with
180/pi
If that doesn't answer your question, could you please specicify the meaning of (plot)?
Risposta accettata
Azzi Abdelmalek
il 18 Apr 2014
Modificato: Azzi Abdelmalek
il 18 Apr 2014
That depends on what you want to convert to degrees
plot(x,y*180/pi)
or
plot(x*180/pi,y)
Più risposte (1)
Image Analyst
il 18 Apr 2014
Have you considered working only in degrees? Then use the trig functions with d after them, like sind(), cosd(), atand(), atand2(), etc.
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!