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!