嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
科学与工程数值算法(Visual C 版 ) 与源码
本书介绍了在科学与工程实际工作中常用的数值计算算法的原理和Visual C 编程方法。本书分为7章,前6章分别讨论了复数运算、矩阵运算、线性代数方程组的求解、非线性方程与方程组的求解、插值和数值积分等的面向对象...
.
├── Source
│ ├── Chapter1
│ │ └── ComplexCalculator
│ │ ├── Complex.cpp
│ │ ├── Complex.h
│ │ ├── ComplexCalculator.aps
│ │ ├── ComplexCalculator.clw
│ │ ├── ComplexCalculator.cpp
│ │ ├── ComplexCalculator.dsp
│ │ ├── ComplexCalculator.dsw
│ │ ├── ComplexCalculator.h
│ │ ├── ComplexCalculator.ncb
│ │ ├── ComplexCalculator.opt
│ │ ├── ComplexCalculator.plg
│ │ ├── ComplexCalculator.rc
│ │ ├── ComplexCalculatorDlg.cpp
│ │ ├── ComplexCalculatorDlg.h
│ │ ├── ReadMe.txt
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── res
│ │ │ ├── ComplexCalculator.ico
│ │ │ └── ComplexCalculator.rc2
│ │ └── resource.h
│ ├── Chapter2
│ │ └── MatrixCalculator
│ │ ├── Complex.cpp
│ │ ├── Complex.h
│ │ ├── Matrix.cpp
│ │ ├── Matrix.h
│ │ ├── MatrixCalculator.aps
│ │ ├── MatrixCalculator.clw
│ │ ├── MatrixCalculator.cpp
│ │ ├── MatrixCalculator.dsp
│ │ ├── MatrixCalculator.dsw
│ │ ├── MatrixCalculator.h
│ │ ├── MatrixCalculator.ncb
│ │ ├── MatrixCalculator.opt
│ │ ├── MatrixCalculator.plg
│ │ ├── MatrixCalculator.rc
│ │ ├── MatrixCalculatorDlg.cpp
│ │ ├── MatrixCalculatorDlg.h
│ │ ├── ReadMe.txt
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── res
│ │ │ ├── MatrixCalculator.ico
│ │ │ └── MatrixCalculator.rc2
│ │ └── resource.h
│ ├── Chapter3
│ │ └── LECalculator
│ │ ├── Complex.cpp
│ │ ├── Complex.h
│ │ ├── ImagDataDlg.cpp
│ │ ├── ImagDataDlg.h
│ │ ├── LECalculator.aps
│ │ ├── LECalculator.clw
│ │ ├── LECalculator.cpp
│ │ ├── LECalculator.dsp
│ │ ├── LECalculator.dsw
│ │ ├── LECalculator.h
│ │ ├── LECalculator.ncb
│ │ ├── LECalculator.opt
│ │ ├── LECalculator.plg
│ │ ├── LECalculator.rc
│ │ ├── LECalculatorDlg.cpp
│ │ ├── LECalculatorDlg.h
│ │ ├── LEquations.cpp
│ │ ├── LEquations.h
│ │ ├── Matrix.cpp
│ │ ├── Matrix.h
│ │ ├── ReadMe.txt
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── res
│ │ │ ├── LECalculator.ico
│ │ │ └── LECalculator.rc2
│ │ └── resource.h
│ ├── Chapter4
│ │ └── NLequationCalculator
│ │ ├── Complex.cpp
│ │ ├── Complex.h
│ │ ├── LEquations.cpp
│ │ ├── LEquations.h
│ │ ├── Matrix.cpp
│ │ ├── Matrix.h
│ │ ├── NLequation.cpp
│ │ ├── NLequation.h
│ │ ├── NLequationCalculator.aps
│ │ ├── NLequationCalculator.clw
│ │ ├── NLequationCalculator.cpp
│ │ ├── NLequationCalculator.dsp
│ │ ├── NLequationCalculator.dsw
│ │ ├── NLequationCalculator.h
│ │ ├── NLequationCalculator.ncb
│ │ ├── NLequationCalculator.opt
│ │ ├── NLequationCalculator.plg
│ │ ├── NLequationCalculator.rc
│ │ ├── NLequationCalculatorDlg.cpp
│ │ ├── NLequationCalculatorDlg.h
│ │ ├── ReadMe.txt
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── res
│ │ │ ├── NLequationCalculator.ico
│ │ │ └── NLequationCalculator.rc2
│ │ └── resource.h
│ ├── Chapter5
│ │ └── Interpolater
│ │ ├── Interpolate.cpp
│ │ ├── Interpolate.h
│ │ ├── Interpolater.aps
│ │ ├── Interpolater.clw
│ │ ├── Interpolater.cpp
│ │ ├── Interpolater.dsp
│ │ ├── Interpolater.dsw
│ │ ├── Interpolater.h
│ │ ├── Interpolater.ncb
│ │ ├── Interpolater.opt
│ │ ├── Interpolater.plg
│ │ ├── Interpolater.rc
│ │ ├── InterpolaterDlg.cpp
│ │ ├── InterpolaterDlg.h
│ │ ├── Matrix.h
│ │ ├── ReadMe.txt
│ │ ├── Spline3Dlg.cpp
│ │ ├── Spline3Dlg.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── res
│ │ │ ├── Interpolater.ico
│ │ │ └── Interpolater.rc2
│ │ └── resource.h
│ ├── Chapter6
│ │ └── Integraller
│ │ ├── Debug
│ │ │ ├── Integral.obj
│ │ │ ├── Integraller.exe
│ │ │ ├── Integraller.ilk
│ │ │ ├── Integraller.obj
│ │ │ ├── Integraller.pch
│ │ │ ├── Integraller.pdb
│ │ │ ├── Integraller.res
│ │ │ ├── IntegrallerDlg.obj
│ │ │ ├── StdAfx.obj
│ │ │ ├── vc60.idb
│ │ │ └── vc60.pdb
│ │ ├── Integral.cpp
│ │ ├── Integral.h
│ │ ├── Integraller.aps
│ │ ├── Integraller.clw
│ │ ├── Integraller.cpp
│ │ ├── Integraller.dsp
│ │ ├── Integraller.dsw
│ │ ├── Integraller.h
│ │ ├── Integraller.ncb
│ │ ├── Integraller.opt
│ │ ├── Integraller.plg
│ │ ├── Integraller.rc
│ │ ├── IntegrallerDlg.cpp
│ │ ├── IntegrallerDlg.h
│ │ ├── ReadMe.txt
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── res
│ │ │ ├── Integraller.ico
│ │ │ └── Integraller.rc2
│ │ └── resource.h
│ ├── Chapter7
│ │ ├── Algthms
│ │ │ ├── Algthms.clw
│ │ │ ├── Algthms.cpp
│ │ │ ├── Algthms.def
│ │ │ ├── Algthms.dsp
│ │ │ ├── Algthms.dsw
│ │ │ ├── Algthms.h
│ │ │ ├── Algthms.ncb
│ │ │ ├── Algthms.opt
│ │ │ ├── Algthms.plg
│ │ │ ├── Algthms.rc
│ │ │ ├── Complex.cpp
│ │ │ ├── Complex.h
│ │ │ ├── Integral.cpp
│ │ │ ├── Integral.h
│ │ │ ├── Interpolate.cpp
│ │ │ ├── Interpolate.h
│ │ │ ├── LEquations.cpp
│ │ │ ├── LEquations.h
│ │ │ ├── Matrix.cpp
│ │ │ ├── Matrix.h
│ │ │ ├── NLequation.cpp
│ │ │ ├── NLequation.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ └── res
│ │ │ └── Algthms.rc2
│ │ ├── AlgthmsS
│ │ │ ├── Algthms.h
│ │ │ ├── AlgthmsS.dsp
│ │ │ ├── AlgthmsS.dsw
│ │ │ ├── AlgthmsS.ncb
│ │ │ ├── AlgthmsS.opt
│ │ │ ├── AlgthmsS.plg
│ │ │ ├── Complex.cpp
│ │ │ ├── Complex.h
│ │ │ ├── Integral.cpp
│ │ │ ├── Integral.h
│ │ │ ├── Interpolate.cpp
│ │ │ ├── Interpolate.h
│ │ │ ├── LEquations.cpp
│ │ │ ├── LEquations.h
│ │ │ ├── Matrix.cpp
│ │ │ ├── Matrix.h
│ │ │ ├── NLequation.cpp
│ │ │ ├── NLequation.h
│ │ │ ├── Readme.txt
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ ├── Sample
│ │ │ ├── Algthms.dll
│ │ │ ├── Algthms.lib
│ │ │ ├── AlgthmsD.dll
│ │ │ ├── AlgthmsD.lib
│ │ │ ├── Complex.h
│ │ │ ├── Integral.h
│ │ │ ├── Interpolate.h
│ │ │ ├── LEquations.h
│ │ │ ├── Matrix.h
│ │ │ ├── NLequation.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Release
│ │ │ │ ├── Sample.exe
│ │ │ │ ├── Sample.obj
│ │ │ │ ├── Sample.pch
│ │ │ │ ├── Sample.res
│ │ │ │ ├── SampleDlg.obj
│ │ │ │ ├── StdAfx.obj
│ │ │ │ └── vc60.idb
│ │ │ ├── Sample.aps
│ │ │ ├── Sample.clw
│ │ │ ├── Sample.cpp
│ │ │ ├── Sample.dsp
│ │ │ ├── Sample.dsw
│ │ │ ├── Sample.h
│ │ │ ├── Sample.ncb
│ │ │ ├── Sample.opt
│ │ │ ├── Sample.plg
│ │ │ ├── Sample.rc
│ │ │ ├── SampleDlg.cpp
│ │ │ ├── SampleDlg.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── res
│ │ │ │ ├── Sample.ico
│ │ │ │ └── Sample.rc2
│ │ │ └── resource.h
│ │ └── SamplesS
│ │ ├── Algthms.h
│ │ ├── AlgthmsS.lib
│ │ ├── AlgthmsSD.lib
│ │ ├── Complex.h
│ │ ├── Integral.h
│ │ ├── Interpolate.h
│ │ ├── LEquations.h
│ │ ├── Matrix.h
│ │ ├── NLequation.h
│ │ ├── ReadMe.txt
│ │ ├── SamplesS.cpp
│ │ ├── SamplesS.dsp
│ │ ├── SamplesS.dsw
│ │ ├── SamplesS.h
│ │ ├── SamplesS.ncb
│ │ ├── SamplesS.opt
│ │ ├── SamplesS.plg
│ │ ├── SamplesS.rc
│ │ ├── SamplesSDlg.cpp
│ │ ├── SamplesSDlg.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── res
│ │ │ ├── SamplesS.ico
│ │ │ └── SamplesS.rc2
│ │ └── resource.h
│ ├── Classes
│ │ ├── Complex.cpp
│ │ ├── Complex.h
│ │ ├── Integral.cpp
│ │ ├── Integral.h
│ │ ├── Interpolate.cpp
│ │ ├── Interpolate.h
│ │ ├── LEquations.cpp
│ │ ├── LEquations.h
│ │ ├── Matrix.cpp
│ │ ├── Matrix.h
│ │ ├── NLequation.cpp
│ │ └── NLequation.h
│ ├── Dll
│ │ ├── Bin
│ │ │ ├── Algthms.dll
│ │ │ ├── Algthms.lib
│ │ │ ├── AlgthmsD.dll
│ │ │ └── AlgthmsD.lib
│ │ └── Header
│ │ ├── Algthms.h
│ │ ├── Complex.h
│ │ ├── Integral.h
│ │ ├── Interpolate.h
│ │ ├── LEquations.h
│ │ ├── Matrix.h
│ │ └── NLequation.h
│ ├── Lib
│ │ ├── Bin
│ │ │ ├── AlgthmsS.lib
│ │ │ └── AlgthmsSD.lib
│ │ └── Header
│ │ ├── Algthms.h
│ │ ├── Complex.h
│ │ ├── Integral.h
│ │ ├── Interpolate.h
│ │ ├── LEquations.h
│ │ ├── Matrix.h
│ │ └── NLequation.h
│ ├── autorun.inf
│ └── readme.txt
├── Source.rar
├── 好例子网_科学与工程数值计算算法与配套源码VC 版.rar
└── 科学与工程数值算法(Visual C 版 ).pdf
36 directories, 293 files