Interpolating between two matrices
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Moritz P.
el 13 de Feb. de 2015
Respondida: Star Strider
el 13 de Feb. de 2015
Hi everyone, is there a good way to interpolate between two matrices and insert the interpolated matrix between the other two ?
0 comentarios
Respuesta aceptada
Star Strider
el 13 de Feb. de 2015
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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Interpolation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!