How to change the size of the matrix?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sophia
el 16 de Nov. de 2016
Respondida: Image Analyst
el 16 de Nov. de 2016
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.
0 comentarios
Respuesta aceptada
Image Analyst
el 16 de Nov. de 2016
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 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!