Interpolating between two matrices

Hi everyone, is there a good way to interpolate between two matrices and insert the interpolated matrix between the other two ?

 採用された回答

Star Strider
Star Strider 2015 年 2 月 13 日

0 投票

If you want to do an element-by-element linear interpolation, this might be easiest:
A = [1:3; 4:6; 7:9];
B = A + 20;
C = (A + B)/2;
Here ‘C’ is the interpolated matrix.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeInterpolation についてさらに検索

質問済み:

2015 年 2 月 13 日

回答済み:

2015 年 2 月 13 日

Community Treasure Hunt

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

Start Hunting!

Translated by