Resolving value of variable to restricted range
1 次查看(过去 30 天)
显示 更早的评论
Goal: Resolve the value of a variable X to be between [-pi, pi)
I have a variable (named "X") that I want to resolve to be within the listed range, [-pi, pi).
If X < -pi
add multiples of 2*pi to X until the result is between [-pi, pi)
If X> pi
subtract multiples of 2*pi until the result is between [-pi, pi)
I presume a if-else statement (with a possible for loop) is necessary to code this. However, I am not familiar with it and would appreciate any guidance.
0 个评论
采纳的回答
Image Analyst
2022-6-23
I don't think you need an if statement or a for loop. Here is one way to do it:
X = 30 % Sample starting number.
while X < -pi
% Add multiples of 2*pi to X until the result is between [-pi, pi)
X = X + 2 * pi
end
while X > pi
% Subtract multiples of 2*pi until the result is between [-pi, pi)
X = X - 2 * pi
end
The code works and you don't need an if to check the value of X beforehand.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!