Cell array of coordinates from two vectors
이전 댓글 표시
I have two vectors, one with 119 X values and a one with 102 Y values. I'm trying to work out a way to combine these to create to all possible unique sets of coordinates (12,138 unique coordinates). I could use two nested for loops to do it, but it's very slow. I'm struggling to find if theres any combination of matlab functions that could achieve this.
채택된 답변
추가 답변 (1개)
Raghunandan V
2018년 10월 5일
you should you at least one nested loop
for k=1:length(X)
z=[X(k) Y'];
perms(Z);
end
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!