repeat rows and export to txt file
Afficher commentaires plus anciens
I read in a txt file containing n colums and n rows. I need to repeat each row x number of times and then export the new file to a txt document. I.E
A=importdata('file.txt')
A = [1;2;3;4]
x= 3
A = [1;1;1;2;2;2;3;3;3;4;4;4]
exportdata('NewFile.txt')
4 commentaires
Mohsin Zubair
le 8 Juil 2021
A=[1;2;3;4];
X=3;
k=1;
for i=1:length(A)
for j=1:X
B(k)=cat(1,A(i));
k=k+1;
end
end
%A=B incase you need result back in orignal Varaible
Jacob Weiss
le 8 Juil 2021
Mohsin Zubair
le 8 Juil 2021
@Jacob Weiss I told you that how can you create your desired output but to export it, there are many ways to do so, it depends how or in whih format you want to export your data, also can you share your orignal text file with data?
Mohsin Zubair
le 8 Juil 2021
well what I told is just using loops which isn't good for long file, what scott told you is much better for file of your size
Réponses (1)
Scott MacKenzie
le 8 Juil 2021
Modifié(e) : Scott MacKenzie
le 8 Juil 2021
I think this is more or less what you're after:
% test data (read from file)
A = [1 8;2 7;3 6;4 5]
x = 3; % number of times to repeat each row (change as desired)
A1 = repmat(A', x, 1);
A2 = reshape(A1, size(A,2), [])'
% write to file
9 commentaires
Jacob Weiss
le 8 Juil 2021
Jacob Weiss
le 8 Juil 2021
Scott MacKenzie
le 8 Juil 2021
Modifié(e) : Scott MacKenzie
le 8 Juil 2021
Unless I've missed something, the key aspect of your question is repeating each row in the data x times. The input file you just posted contains a 16120x4 matrix of data. So, here's my answer with the addition of reading and writing to and from files:
f = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/678488/Raj_AZ31_16120.txt';
A = readmatrix(f);
x = 3; % number of times to repeat each row (change as desired)
A1 = repmat(A', x, 1);
A2 = reshape(A1, size(A,2), [])';
writematrix(A1,'newfile.txt');
I ran this on my computer and it created the desired output file with the data in a 48360x4 matrix
Jacob Weiss
le 9 Juil 2021
Jacob Weiss
le 9 Juil 2021
Scott MacKenzie
le 9 Juil 2021
Oops. Minor (major?) typo in my script. Change the last line from
writematrix(A1,'newfile.txt'); % Oops, wrong matrix written to file!
to
writematrix(A2,'newfile.txt'); % write the A2 matrix to file
You might want to consider repelem instead of repmat:
A=[1;2;3;4];
repelem(A,3,1)
Scott MacKenzie
le 9 Juil 2021
@Rik. Thanks. Yes indeed, much simpler. @Jacob Weiss with Rik's simplification, something like this will also work...
f = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/678488/Raj_AZ31_16120.txt';
A = readmatrix(f);
x = 3; % number of times to repeat each row (change as desired)
B = repelem(A, x, 1);
writematrix(B,'newfile.txt');
Jacob Weiss
le 9 Juil 2021
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!