从MPFR打印到文件

时间:2016-08-08 13:16:53

标签: c++ fstream mpfr

我想使用MPFR打印计算结果到文件,但我不知道如何。 MPFR用于高精度地执行浮点运算。要打印mpfr_t号码,请使用以下功能:

size_t mpfr_out_str (FILE *stream, int base, size t n, mpfr t op, mp rnd t rnd)

我想我的问题是我不理解FILE*个对象以及它们与fstream个对象的关系。

如果我将my_file行中的mpfr_out_str更改为stdout,那么该号码将按照我的希望打印到屏幕上,但我不知道如何将其插入文件。

#include <mpfr.h>
#include <iostream>
#include <fstream>
using namespace std;
int main() {
   mpfr_t x;
   mpfr_init(x);
   mpfr_set_d(x, 1, MPFR_RNDN);

   ofstream my_file;
   my_file.open("output.txt");
   mpfr_out_str(my_file, 2, 0, x, MPFR_RNDN);
   my_file.close();
}

2 个答案:

答案 0 :(得分:1)

可以将std :: ostream方法与mpfr函数(如mpfr_as_printf或mpfr_get_str)一起使用。但是它需要额外的字符串分配。

  #include <mpfr.h>
  #include <iostream>
  #include <fstream>
  using namespace std;
  int main() {
     mpfr_t x;
     mpfr_init(x);
     mpfr_set_d(x, 1, MPFR_RNDN);

     ofstream my_file;
     my_file.open("output.txt");

     char* outString = NULL;
     mpfr_asprintf(&outString, "%RNb", x);
     my_file << outString;
     mpfr_free_str(outString);
     my_file.close();

     mpfr_clear(x);
  }

答案 1 :(得分:0)

经过不多的工作后,我发现这取代了底部的4行代码:

FILE* my_file;
my_file = fopen("output.txt", "w");
mpfr_out_str(my_file, 2, 0, x, MPFR_RNDN);
fclose(my_file);