Creating a matrix from vectors to have unique combinations
조회 수: 2 (최근 30일)
이전 댓글 표시
I am trying to populate a nx3 matrix such that every row is a unique combination. Here are my variables.
lat = (-25:0.1:-16);
lon = (-76:0.1:-64);
dep= [0:1:300];
What I am trying to get is a matrix that with length(lat)*length(lon)*length(dep) rows and 3 columns and should consist of every possible combination of lat, long and depth. For example, for a specific lat/long combination there should be 300 values. I feel like this should be very simple but I am not able to figure it out.
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2016년 5월 11일
lat = (-25:0.1:-16)
lon = (-76:0.1:-64)
dep= [0:1:300]
[x,y,z]=meshgrid(lat,lon,dep);
out=[x(:) y(:) z(:)];
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!