How to arrange random data in a order of sequence?
1 view (last 30 days)
Show older comments
PFA.. of the data (rawdata.txt) which is in random order for the Long, Lat, U and V parameters
Need the output in the same way as given in attachment. Pls find
Thankin you
2 Comments
Accepted Answer
Walter Roberson
on 13 Sep 2020
[sortedData, sortidx] = sortrows(YourData, [-2, 1]);
sortedU = U(sortidx, :);
sortedV = V(sortidx, :);
3 Comments
Walter Roberson
on 14 Sep 2020
[t1, t2] = ndgrid(vector241, vector185);
output = [t1(:), t2(:)];
More Answers (0)
See Also
Categories
Find more on Logical 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!