repeat rows and export to txt file
이전 댓글 표시
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
Mohsin Zubair
2021년 7월 8일
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
2021년 7월 8일
Mohsin Zubair
2021년 7월 8일
@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
2021년 7월 8일
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
답변 (1개)
Scott MacKenzie
2021년 7월 8일
편집: Scott MacKenzie
2021년 7월 8일
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
Jacob Weiss
2021년 7월 8일
Jacob Weiss
2021년 7월 8일
Scott MacKenzie
2021년 7월 8일
편집: Scott MacKenzie
2021년 7월 8일
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
2021년 7월 9일
Jacob Weiss
2021년 7월 9일
Scott MacKenzie
2021년 7월 9일
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
2021년 7월 9일
@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
2021년 7월 9일
카테고리
도움말 센터 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!