实例介绍
本书介绍了在科学与工程实际工作中常用的数值计算算法的原理和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
标签: Visual C++ c++ c++ UA 科学
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论