gpt4 book ai didi

c++ - 在 C++ 中读取 Fortran 数据类型

转载 作者:搜寻专家 更新时间:2023-10-31 01:28:33 28 4
gpt4 key购买 nike

我有一个包含 Fortran 数据类型数据的 .txt。我可以通过以下方式使用 Python 读取数据。

import  fortranformat as ff

.....#more code in between.
with open(sys.argv[1]) as fh
.....#more code in between.
nodeline = ff.FortranRecordReader("(I3,I10,3E12.5)")
line = fh.readline()
data = nodeline.read(line)
#note that all the code is not provided.

我想知道是否有一种方法可以从 .txt 文件中读取 C++ 的 Fortran 数据类型(不使用函数子字符串)。

附言。我没有提供完整的 python 代码,因为它可以正常工作,我只是使用了更好地解释我的问题所需的部分。

下面给出了 .txt 文件中的数据示例。

 -1         1-3.07500E+01-2.96893E+01-1.65000E+01
-1 2-3.07500E+01 2.96893E+01-1.65000E+01
-1 3-8.85000E+01 8.74393E+01-1.65000E+01
-1 4-8.85000E+01-8.74393E+01-1.65000E+01
-1 5-8.85000E+01 8.74393E+01-2.15000E+01
-1 6-8.85000E+01-8.74393E+01-2.15000E+01
-1 7-3.07500E+01 2.96893E+01-2.15000E+01
-1 8-3.07500E+01-2.96893E+01-2.15000E+01
-1 9 2.96893E+01-3.07500E+01-1.65000E+01
-1 10-2.96893E+01-3.07500E+01-1.65000E+01
-1 11-8.74393E+01-8.85000E+01-1.65000E+01

最佳答案

使用问题中提供的格式,我编写了一个简单的 Fortran 程序来写入一些数据。

      PROGRAM TEST
WRITE(*,FMT='(I3,I10,3E12.5)') 1, 234, 5.67, 8.9, 0.123456789
END PROGRAM

我将上述程序的输出通过管道传输到文件test.dat:

  1       234 0.56700E+01 0.89000E+01 0.12346E+00

然后在 C++ 中,可以使用 std::ifstream 轻松读取数据。

#include <fstream>
#include <iostream>

int main() {
std::ifstream ifs("test.dat");

int i,j;
double d,e,f;

while (ifs >> i >> j >> d >> e >> f) {
std::cout << i << ' ' << j << ' ' << d << ' ' << e << ' ' << f << '\n';
}
}

编译运行输出

1 234 5.67 8.9 0.12346

对编辑的回答:

如果您必须解析这种缺少空格的奇怪格式,您可能需要考虑使用合适的解析器生成器,例如 Boost.Spirit。

#include <fstream>
#include <iostream>
#include <tuple>
#include <vector>

#include <boost/fusion/adapted/std_tuple.hpp>
#include <boost/spirit/home/support/iterators/istream_iterator.hpp>
#include <boost/spirit/home/x3.hpp>

int main() {
std::ifstream input("test.dat");
input.unsetf(std::ios::skipws);
std::vector<std::tuple<int, int, double, double, double>> entries;

boost::spirit::istream_iterator first(input);
boost::spirit::istream_iterator last;

using namespace boost::spirit::x3;

bool r = phrase_parse(first, last,
*(int_ >> int_ >> double_ >> double_ >> double_),
space, entries);

if (!r || first != last) {
std::cerr << "Parsing failed at " << std::string{first, last} << '\n';
} else {
for (auto const &entry : entries) {
int i, j;
double d, e, f;
std::tie(i, j, d, e, f) = entry;
std::cout << i << ' ' << j << ' ' << d << ' ' << e << ' ' << f
<< '\n';
}
}
}

关于c++ - 在 C++ 中读取 Fortran 数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51888244/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com