Hi, I have been using Moon mineralogy mapper data of Chandrayaan I....I was trying to create bins of 0.1 degree phase angle reolution for my dataset....can anyone please provide me the solution of how to do it in matlab....Thanking you in advance

2 views (last 30 days)
The dataset is 3Dimensional data in a format as Number of pixels x Phase angle x Wavelength....In such a 3D dimension data....How do I create bins of 0.1 degree phase angle resolution (such as 0.1, 0.2 and so on)

Accepted Answer

Walter Roberson
Walter Roberson on 25 Jun 2011
bins = 0:0.1:360;
if bins(end)==360; bins(end) = []; end

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!