How to I add zeroes onto a matrix?

2 ビュー (過去 30 日間)
Sarah Nolt-Caraway
Sarah Nolt-Caraway 2021 年 9 月 21 日
回答済み: Stephen23 2021 年 9 月 22 日
So I have a matrix, that needs to be 1x52500. If it isnt, I want to pad zeroes onto the end. This is what I have, but it did not add the zeroes.
Matrix = zeros(1,52500);
if length(index) ~= length(Matrix)
padarray(index,[0 1],0,'post')
end

採用された回答

Ryan
Ryan 2021 年 9 月 22 日
編集済み: Ryan 2021 年 9 月 22 日
I don't have the image processing toolbox so not sure how you would do it with padarray but you could also do it this way
Assuming "Matrix" is your data array to pad...
[~,X] = size(Matrix);
if X < 52500
Matrix = [Matrix,zeros(1,52500-X)]
end

その他の回答 (1 件)

Stephen23
Stephen23 2021 年 9 月 22 日
Where V is your vector:
V(end+1:52500) = 0

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by