フィルターのクリア

How to change the size of the matrix?

1 回表示 (過去 30 日間)
Sophia
Sophia 2016 年 11 月 16 日
回答済み: Image Analyst 2016 年 11 月 16 日
I have a matrix of the size of 119*177 and i am comparing the results with another matrix which is of the size 361*361.. IS there a way i can change the 119*177 to 361*361 and then can use difference to compare the results.

採用された回答

Image Analyst
Image Analyst 2016 年 11 月 16 日
You can use imresize():
m2 = imresize(m, [361,361]);
There are different sizing options for imresize(), like 'bilinear' or 'nearest', etc. so be sure to check out the documentation.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInterpolation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by