How to pad zeros to an array?

조회 수: 88 (최근 30일)
Minu
Minu 2013년 5월 30일
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...

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 5월 30일
편집: Azzi Abdelmalek 2013년 5월 30일
A=[1 2 3 4 5]
A=[A zeros(1,5)]
%or
A(end+1:end+5)=0

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by