Borrar filtros
Borrar filtros

Making two matrices have the same size

3 visualizaciones (últimos 30 días)
med-sweng
med-sweng el 23 de Feb. de 2014
Comentada: Image Analyst el 23 de Feb. de 2014
I have the following two matrices, with the following sizes:
A: 71x1
B: 14x14
How can I make them both of size
14x14?
Can we use some sort of padding with zeros for instance?
How can we go about that?
Thanks.
  1 comentario
Image Analyst
Image Analyst el 23 de Feb. de 2014
How you do it depends on what direction you want the 71 pixels to go (before they run out): down or across.

Iniciar sesión para comentar.

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 23 de Feb. de 2014
Editada: Azzi Abdelmalek el 23 de Feb. de 2014
A=rand(71,1) % Example
A=reshape([A;zeros(14*14-71,1)],14,14)

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by