标题包含矩阵的CSV文件

时间:2018-04-30 15:00:30

标签: tcl tk

我的应用程序使用csv :: writematrix $ matrixname $ file生成包含矩阵的CSV。这仅将我的矩阵打印到CSV文件。如何在每次写入文件时为此csv文件添加标题?

set outfile [open "$csvfile" w]
set template [path/to/template/for/matrix/file.csv]
#populate the template with data
set matrix [loadmatrix $template]
csv::writematrix $matrix $outfile
close $outfile

0 个答案:

没有答案