converting degrees and radian

25 visualizzazioni (ultimi 30 giorni)
Vin diz
Vin diz il 2 Feb 2021
Risposto: Daniel Pollard il 2 Feb 2021
how do a make a solution tht prompts user to input (A or B) . A being degree to radian. B being radian to degree. others input error. if prompted A ..it will ask for angle in degree and displays in equivalent radians. if prompted B will ask for a radian and displays in degrees.Should be able to accept both scalar and matrix input/
degrees=radians*180/pi
radian=degrees*pi/180

Risposte (1)

Daniel Pollard
Daniel Pollard il 2 Feb 2021
Something like
option = input("Type A for degree to radians, and B for radians to degrees: ", 's')
if option == "A"
degs = input("Please insert a value in degrees: ")
rads = degs*pi/180;
disp(degs+" degrees = "+rads+" radians")
elseif option == "B"
rads = input("Please insert a value in radians: ")
degs = rads*180/pi;
disp(rads+" radians = "+degs+" degrees")
else
error("Please insert only A or B")
end
should do what you want.

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by