⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xfrenel.cpp

📁 这是C++数值算法(第二版)的源代码,其中包含了目前一些比较常用的数值计算的算法.
💻 CPP
字号:
#include <string>
#include <fstream>
#include <iostream>
#include <iomanip>
#include <complex>
#include "nr.h"
using namespace std;

// Driver for routine frenel

int main(void)
{
        string txt;
        int i,nval;
        DP x,xc,xs;
        complex<DP> cs;
        ifstream fp("fncval.dat");

        if (fp.fail())
          NR::nrerror("Data file fncval.dat not found");
        getline(fp,txt);
        while (txt.find("Fresnel Integrals")) {
          getline(fp,txt);
          if (fp.eof()) NR::nrerror("Data not found in fncval.dat");
        }
        fp >> nval;
        getline(fp,txt);
        cout << endl << "Fresnel Integrals" << endl;
        cout << setw(9) << "x" << setw(17) << "actual";
        cout << setw(15) << "c(x)" << setw(15) << "actual";
        cout << setw(15) << "s(x)" << endl << endl;
        cout << scientific << setprecision(6);
        for (i=0;i<nval;i++) {
          fp >> x >> xs >> xc;
          NR::frenel(x,cs);
          cout << setw(15) << x << setw(15) << xs << setw(15) << imag(cs);;
          cout << setw(15) << xc << setw(15) << real(cs)<< endl;
        }
        return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -