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

4 visualizzazioni (ultimi 30 giorni)
I want to add zeros to make my data eqaully balance with 250 rows and 4 columns. can anyone help?

Risposte (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov il 14 Lug 2021
Modificato: Sulaymon Eshkabilov il 14 Lug 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 Commento
Jaspreet Kaur
Jaspreet Kaur il 14 Lug 2021
Thank you for your reply. actually i have multiple text file. here is example of one of them.

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by