create coordination matrix from zig zag path
1 view (last 30 days)
Show older comments
I want to creat matrix with x and y coordiantion of zig zag path.
For example :

So the generated matrix should be like this:
A = [ o o
0 410
1 410
1 0
2 0
2 410
3 410
3 0
4 0
4 410
. ... ......]
let's say the x direction limit is 8 . How can we do this ?
0 Comments
Accepted Answer
David Hill
on 14 Jul 2020
x=0:9;%xend odd only
y=[0;410;410;0];
A=[repelem(x',2),repmat(y,(x(end)+1)/2,1)];
6 Comments
More Answers (0)
See Also
Categories
Find more on Time-Frequency Analysis 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!