Write a file starting in column 7.
1 次查看(过去 30 天)
显示 更早的评论
Leonardo Barbosa Torres dos Santos
2019-4-5
回答: Leonardo Barbosa Torres dos Santos
2019-4-6
Dear, I have a question about write the data in the file.
Is possible write a data in the file starting in column 7 ?
For example:
My program is writing:
Line 1 and Column 1 until 36
Line 2 and Column 1 until 36
.
.
Line 19 and colund 1 until 36.
I would like write starting in column 7 until 42.
that is:
line 1 and Column 7 until 42
line 2 and Column 7 until 42
.
.
line 19 and Column 7 until 42.
That is, all line of column 1 until column 6 stay empty.
Is it possible ?
thank you
1 个评论
dpb
2019-4-5
Certainly possible but specifics depend on what kind of file you're trying to create???
采纳的回答
A. Sawas
2019-4-5
If your data is in csv format, you can use the command csvwrite with row and col parameters as follows:
row = 0;
col = 6; % row and cols are zero-based so row=0 and col=0 are the first row and column, respectively.
csvwrite(filename, yourdata, row, col);
2 个评论
A. Sawas
2019-4-5
Try appending zeros to C in the columns from 1 to 6, like this:
C = [zeros(19,6) C];
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!