how to edit csv file ?
이전 댓글 표시
i have this csv file. i want to edit the file and add a number(the value) of total rows in the file at the top without deleting any row .inserting the number !
output should look like
697
98.036,90,72.708,9.9692e+36,9.9692e+36
97.451,90,72.927,9.9692e+36,9.9692e+36
96.9,90,73.135,9.9692e+36,9.9692e+36
.
.
.
97.451,90,72.927,9.9692e+36,9.9692e+36
96.9,90,73.135,9.9692e+36,9.9692e+36
댓글 수: 4
madhan ravi
2019년 9월 18일
Isn't this the same quesion as https://in.mathworks.com/matlabcentral/answers/480943-how-to-insert-a-single-value-in-the-matrix ?
Geoff Hayes
2019년 9월 18일
pruth - do you just have one file? If so, can you do this manually instead of using MATLAB?
pruth
2019년 9월 19일
채택된 답변
추가 답변 (1개)
Sebastian Körner
2019년 9월 18일
read your file with
A = readtable(yourfile);
then follow this scheme:
A = [8 8 8 8 8 8 ; 7 7 7 7 7 7]; %% example data for your file
[r,c]=size(A);
A = num2cell(A);
B = cell(1,c);
B{1,1} = r;
C = [B ; A];
C is the output you are looking for
카테고리
도움말 센터 및 File Exchange에서 File Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!