Effacer les filtres
Effacer les filtres

appending or padding zeros before a matrix in matlab

4 vues (au cours des 30 derniers jours)
Malik
Malik le 21 Avr 2013
hello, if i have a matrix
u = [1 0 1 1]
and i want to append zeros before it upto a length n:
u1 = [0 0 0 0 0 0 0 1 0 1 1]
where n =7.
How should i? i tried this
zeros(1,n)
then tried to concatenate it with u but couldnt concatenate either.
regards.

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 21 Avr 2013
Modifié(e) : Azzi Abdelmalek le 21 Avr 2013
Maybe you did not correctly concatenate them?
u=[1 0 1 1]
u1=[zeros(1,7) u]
  1 commentaire
Malik
Malik le 21 Avr 2013
thanks! yes i wasn't concatenating correctly.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices 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