How do you take a set of values in a matrix and normalize them to a 360 degree rotation?
2 views (last 30 days)
Show older comments
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 Comment
Anton Kogios
on 5 Jul 2023
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.
Answers (1)
Daniel
on 6 Jul 2023
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 Comments
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!