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

1 vue (au cours des 30 derniers jours)
Jaspreet Kaur
Jaspreet Kaur le 14 Juil 2021
Commenté : Jaspreet Kaur le 14 Juil 2021
I want to add zeros to make my data eqaully balance with 250 rows and 4 columns. can anyone help?
  1 commentaire
Rik
Rik le 14 Juil 2021
What is your input data, and what have you tried so far?

Connectez-vous pour commenter.

Réponses (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 14 Juil 2021
Modifié(e) : Sulaymon Eshkabilov le 14 Juil 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 commentaire
Jaspreet Kaur
Jaspreet Kaur le 14 Juil 2021
Thank you for your reply. actually i have multiple text file. here is example of one of them.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by