How to assign 10 degrees (a unit to measure angle) to a variable ?
43 次查看(过去 30 天)
显示 更早的评论
I wish to define a variable that takes the value 10 degrees.
For example, I am defining \theta = 10; in a matlab program. I consider that '\theta' has stored 10 degrees (a unit to measure angle) not the real number 10. Is it a correct way to define this? How can we define \theta such that it stores 10 degrees (a unit to measure angle)?
3 个评论
回答(2 个)
Walter Roberson
2017-11-6
See https://www.mathworks.com/help/symbolic/units-of-measurement-tutorial.html for how to create a variable with degrees attached.
However, sin() cannot operate on such items. The way to work with degrees is with sind() or by converting the degrees into radians.
0 个评论
Eric
2017-11-6
编辑:Eric
2017-11-7
As James suggests, the following will work just fine:
theta = 10; % degrees (Write a comment at the end if you want to remember later)
MATLAB ultimately doesn't really care about units anywhere. You are the one responsible for checking that any equations you use are considering degrees, not radians (or any units, really).
Having said that however, trig function calls such as sin, cos, etc. tend to default to using radians. You will need entirely different functions, namely sind, cosd, etc., in order to get proper answers with degrees as inputs. Be sure to watch out for these situations, or ones involving any polar or spherical coordinate conversions, know what you need for them and how to convert, and you should be fine.
Edit: Apparently I was wrong and MATLAB can indeed attach units to numbers via the symbolic Math Toolbox, if you really wanted it to do so. See Walter's answer for more info.
4 个评论
Walter Roberson
2017-11-7
"MATLAB ultimately doesn't really care about units anywhere."
As well as the symbolic math options, the Simscape family expects units to be attached to items, and will do automatic unit conversion. However, to call upon MATLAB routines there, you need to tell Simscape to strip off the unit and pass the value through.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!