フィルターのクリア

calculate weight of each 2D data point

6 ビュー (過去 30 日間)
zheng
zheng 2011 年 3 月 10 日
a data set consists of x and y, if I want to find out the associated weights for each point. What can I do?

採用された回答

Walter Roberson
Walter Roberson 2011 年 3 月 10 日
Please expand on your question.
Are you trying to find out how many of the points fall in to each square of a grid? If so, then you can use accumarray for that:
xgrid = 1 + floor(Nx * (x - min(x)) ./ (max(x) - min(x)));
ygrid = 1 + floor(Ny * (y - min(y)) ./ (max(y) - min(y)));
weights = accumarray([xgrid(:), ygrid(:)], 1);
This will produce an Nx by Ny grid of counts.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeModify Image Colors についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by