Effacer les filtres
Effacer les filtres

RESIZE 3-D MATRIX

3 vues (au cours des 30 derniers jours)
Julia Linderfalk
Julia Linderfalk le 13 Mar 2020
Commenté : Guillaume le 17 Mar 2020
I have imported data as a matrix called A with a size
447 x 370 x 331
How do I RESIZE the matrix to 120 x 100 x 85?
Thanks,
Amanda & Julia
  3 commentaires
Julia Linderfalk
Julia Linderfalk le 17 Mar 2020
I don't want a subset of the actual matrix. I want to use all the elements in the matrix but in some way make it smaller, maybe by using the average of some elements? :)
Guillaume
Guillaume le 17 Mar 2020
" I want to use all the elements in the matrix but in some way make it smaller, maybe by using the average of some elements?"
We can't really make the decision for you as to how to make it smaller, particularly as we have no idea what your matrix represents. If your matrix represents samples on a grid you could indeed resample to a coarser grid using an interpolation such as nearest, linear, cubic, or more complex method.
If you don't really know what you want, then perhaps you need to clarify to yourself what it is you're trying to do first.

Connectez-vous pour commenter.

Réponses (1)

Gaurav Garg
Gaurav Garg le 16 Mar 2020
Hi,
In your case, the original matrix has a total of 54,744,090 (447*370*331) elements, while the resultant matrix has 1,020,000 elements. So, using reshapefunction will give you an error since you cannot change the number of elements of the array. One thing, you could do is to change one of the dimensions to [], which would itself compute that dimension.
However, one thing to be noted is that the product of 2 dimensions should be divisible by the total number of elements (54,744,090).

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by