Add zero to make length divisible by 3

1 view (last 30 days)
Hallo,
i have vector that i want to reshape into a matrix. Therefor i firstly need to prove if the length is divisible by 3. if not i want to add as much zeros at the end of the vector until the length is divisible by 3? can someone help? thanks!

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 6 Aug 2016
id=mod(-numel(A),3)
A(end+1:numel(A)+id)=0

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!