Borrar filtros
Borrar filtros

Different size matrix data addition

1 visualización (últimos 30 días)
Joydeb Saha
Joydeb Saha el 20 de Mayo de 2020
Comentada: Walter Roberson el 20 de Mayo de 2020
I have different matrix size for different data file. say one data is 846x399 and another is 4208x399. I need to add all the files. how to do it?

Respuestas (1)

DEEPAK SHARMA
DEEPAK SHARMA el 20 de Mayo de 2020
Define your Matrix A(846x399) , B(4208x399)
Define C = zeros(1,399);
A = [A;repmat(C,3362,1)];
new Matrix A will be 4208x399
now you can add A and B

Categorías

Más información sobre Multidimensional Arrays 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!

Translated by