如何将 Fortran 输出导入 Excel?
在 fortran (95) 中运行模型后,我最终得到了一些结果数组(和一个结果矩阵)。我想将这些数据转移到 Excel 中以用于报告目的。做到这一点最简单的方法是什么?
After running a model in fortran (95) I end up with some result arrays (and one result matrix). I'd like to move these into excel for reporting purposes. What's the easiest way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以使用以下代码将数据写入文本文件,然后将其内容复制粘贴到 Excel
在处理这些数据之前,您必须运行“粘贴特殊向导”来分隔 Excel 中的数据列
You can also write your data into a text file with the below code and then copy paste its contents to excel
before working with these data you must run "paste special wizard" to separate columns of the data in the excel
正如 S. Lott 在我之前所说,CSV 格式可能是最好的选择,但实际上 Excel 在文件格式方面非常聪明。它通常适用于制表符分隔或空格分隔的数据,甚至 HTML 表格。尝试将数据复制并粘贴到 Excel 中,看看是否可以解决问题,然后再过分担心格式。
As S. Lott said before me, CSV format is probably the best choice, but actually Excel is pretty clever about file formats. It will usually work with tab separated or space separated data, or even HTML tables. Try copy-and-pasting your data into Excel to see whether it can work it out, before worrying too much about the format.
将 Fortran 输出修复为 CSV 格式。这可以轻松导入到电子表格中。
Fix your Fortran output to be in CSV format. This is easily imported into a spreadsheet.