MATLAB: Converting from radian to degree

convertplotsimulink

how to convert a (plot) in radian to degree,,,

Best Answer

That depends on what you want to convert to degrees
plot(x,y*180/pi)
or
plot(x*180/pi,y)
Related Question