dimension consistency of matrix

Hello
I have 2 columns
A B
1 2
2 4
3 3
4 1
6
1
3
4
5
6
How do I make B the same size as A by completting the length with zero to make it the same dimension
Thanks advance

Respuestas (1)

Raj
Raj el 14 de Mayo de 2019

0 votos

A=[1;2;3;4;6;1;3;4;5;6]
B=[2;4;3;1]
B= [B;zeros(numel(A)-numel(B),1)]

Categorías

Más información sobre Get Started with MATLAB en Centro de ayuda y File Exchange.

Productos

Etiquetas

Preguntada:

el 14 de Mayo de 2019

Respondida:

Raj
el 14 de Mayo de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by