how to add zero padding to text file to make 250x4

1 view (last 30 days)
I want to add zeros to make my data eqaully balance with 250 rows and 4 columns. can anyone help?

Answers (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 14 Jul 2021
Edited: Sulaymon Eshkabilov on 14 Jul 2021
X = load("Test0.txt"); % Original data file
x1 = zeros(250,4); % Zeros 250-by-4
XX = [x1;X]; % All data augmented
writematrix(XX,'Test_New.txt','Delimiter','tab') % Written a new data file in *.txt
  1 Comment
Jaspreet Kaur
Jaspreet Kaur on 14 Jul 2021
Thank you for your reply. actually i have multiple text file. here is example of one of them.

Sign in to comment.

Categories

Find more on Migrate GUIDE Apps 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!