How to assign 10 degrees (a unit to measure angle) to a variable ?

조회 수: 53 (최근 30일)
vikas mishra
vikas mishra 2017년 11월 6일
댓글: Walter Roberson 2017년 11월 7일
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
vikas mishra
vikas mishra 2017년 11월 6일
Thanks, I am doing the same but the question is whether it is correct or not? I am plotting x vs y with the condition of varying \theta where \theta is the angle made by the curve with respect to x-axis. I am defining the initial value of \theta as \theta_o = 10. Will MATLAB consider it in degrees?
Stephen23
Stephen23 2017년 11월 7일
"Will MATLAB consider it in degrees?"
No. That is the programmer's job.

댓글을 달려면 로그인하십시오.

답변 (2개)

Walter Roberson
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.

Eric
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
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by