フィルターのクリア

Distribute matrix elements to smaller grids.

1 回表示 (過去 30 日間)
Sourangsu Chowdhury
Sourangsu Chowdhury 2019 年 2 月 3 日
回答済み: Guillaume 2019 年 2 月 3 日
I need to distribte matrix elements into a smaller grid size.
For example, I have a matrix with size 2x2
[10 20
30 40]
I want a matrix with size 4x4 by distributing the elements into a finer resolution.
[2.5 2.5 5 5
2.5 2.5 5 5
7.5 7.5 10 10
7.5 7.5 10 10]
I could do this using resizem and then dividing each element by 4. Is there any other efficient way to do this?

採用された回答

Guillaume
Guillaume 2019 年 2 月 3 日
Easily:
M = [10 20;
30 40];
scaling = 2;
repelem(M/scaling^2, scaling, scaling)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAntenna and Array Analysis についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by