How to pad zeros to an array?
92 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi
I have an array of data of size 5.I have to pad zeros to set the size as 10.How to add zeros of size 5.Help me please...
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 30 de Mayo de 2013
Editada: Azzi Abdelmalek
el 30 de Mayo de 2013
A=[1 2 3 4 5]
A=[A zeros(1,5)]
%or
A(end+1:end+5)=0
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!