Interpolating between two matrices

7 次查看(过去 30 天)
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
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 个)

类别

Help CenterFile Exchange 中查找有关 Interpolation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by