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

4 visualizaciones (últimos 30 días)
Jaspreet Kaur
Jaspreet Kaur el 14 de Jul. de 2021
Comentada: Jaspreet Kaur el 14 de Jul. de 2021
I want to add zeros to make my data eqaully balance with 250 rows and 4 columns. can anyone help?
  1 comentario
Rik
Rik el 14 de Jul. de 2021
What is your input data, and what have you tried so far?

Iniciar sesión para comentar.

Respuestas (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 14 de Jul. de 2021
Editada: Sulaymon Eshkabilov el 14 de Jul. de 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 comentario
Jaspreet Kaur
Jaspreet Kaur el 14 de Jul. de 2021
Thank you for your reply. actually i have multiple text file. here is example of one of them.

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by