How do you take a set of values in a matrix and normalize them to a 360 degree rotation?
2 次查看(过去 30 天)
显示 更早的评论
I have a digital trigger variable that displays a 1 value at the bottom position and a 0 value at every other position. How do I make a loop that places these values from 0 degrees to 360 degrees? I am sorry if this is vague.
1 个评论
Anton Kogios
2023-7-5
Your question is quite vague. If your variable is just 1s and 0s, and you want to convert it to 360s and 0s, you could just multiply it by 360. Or rescale may be what you are looking for.
回答(1 个)
Daniel
2023-7-6
Am I right in thinking you would want to do something like this?
[1 0 0 0 1 0 0 0 1] -> [0 90 180 270 0 90 180 270 0]
or
[1 0 1 0 1 0 1 0 1] -> [0 180 0 180 0 180 0 180 0]
You'll need some kind of counter to identify the distance between successive nonzero values; between any two nonzero values you can just interpolate from 0 to 360. The catch is that since your sensor only reads 0's and 1's, you can't interpolate properly until you have the next 1 to reference to.
vals = [0 1 0 0 0 1 0 0 0 1 0];
idxs = find(vals)
interpolatedVals = vals;
interpolatedVals(idxs(1):idxs(2)) = linspace(0,360,idxs(2)-idxs(1)+1)
And loop that from the idx(1):idx(2) range up to idx(end-1):idx(end).
This won't help you resolve the assumed angles before your first 1 or after your last 1, of course, since you don't have any known average angular velocity in those regions.
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!