Interpolating between two matrices

조회 수: 6 (최근 30일)
Moritz P.
Moritz P. 2015년 2월 13일
답변: Star Strider 2015년 2월 13일
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