如何将 Fortran 输出导入 Excel?

发布于 2024-08-08 19:56:53 字数 92 浏览 5 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

潇烟暮雨 2024-08-15 19:56:54

您还可以使用以下代码将数据写入文本文件,然后将其内容复制粘贴到 Excel
在处理这些数据之前,您必须运行“粘贴特殊向导”来分隔 Excel 中的数据列

dimension a(100)
open (25,'output.txt')
do i=1,100
write(25,*) a(i)
end do

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

dimension a(100)
open (25,'output.txt')
do i=1,100
write(25,*) a(i)
end do
戴着白色围巾的女孩 2024-08-15 19:56:53

正如 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.

伪心 2024-08-15 19:56:53

将 Fortran 输出修复为 CSV 格式。这可以轻松导入到电子表格中。

Fix your Fortran output to be in CSV format. This is easily imported into a spreadsheet.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文