Adding zeros to a number

7 visualizzazioni (ultimi 30 giorni)
WhatIsMatlab-
WhatIsMatlab- il 20 Feb 2016
Commentato: WhatIsMatlab- il 20 Feb 2016
So I have this number 0 1 0 1 0 it is only 5 bits long but I want to add all zeros to the end of the number to make it 23 bits long. I have played around with this some but I cannot seem to get it to add zeros to the end of the number.
Thanks

Risposta accettata

Walter Roberson
Walter Roberson il 20 Feb 2016
A = [0 1 0 1 0];
A = [A, zeros(1, 23-length(A))];

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by