实例介绍
不要分,免费共享,本书对数值计算算法作了详细阐述,CD含有大量数值计算相关源代码(针对VC++6.0)
【实例截图】
【核心代码】
4744302542887297933.rar
└── 计算机常用数值算法与程序(C++版)
├── Chap01
│ ├── Chap1.dsp
│ ├── Chap1.dsw
│ ├── Chap1.ncb
│ ├── Chap1.opt
│ ├── Chap1.plg
│ ├── Comm.cpp
│ └── Debug
│ ├── Chap1.ilk
│ ├── Chap1.pch
│ ├── Chap1.pdb
│ ├── comm.dat
│ ├── Comm.exe
│ ├── vc60.idb
│ └── vc60.pdb
├── Chap02
│ ├── Chap2.dsp
│ ├── Chap2.dsw
│ ├── Chap2.ncb
│ ├── Chap2.opt
│ ├── ComplexExample.cpp
│ └── Debug
│ ├── Chap2.ilk
│ ├── Chap2.pch
│ ├── Chap2.pdb
│ ├── ComplexExample.dat
│ ├── ComplexExample.exe
│ ├── vc60.idb
│ └── vc60.pdb
├── Chap03
│ ├── Chap3.dsp
│ ├── Chap3.dsw
│ ├── Chap3.ncb
│ ├── Chap3.opt
│ ├── Debug
│ │ ├── Chap3.ilk
│ │ ├── Chap3.pch
│ │ ├── Chap3.pdb
│ │ ├── rand_01_One.dat
│ │ ├── rand_01_One.exe
│ │ ├── rand_01_Series.dat
│ │ ├── rand_01_Series.exe
│ │ ├── rand_ab_One.dat
│ │ ├── rand_ab_One.exe
│ │ ├── rand_ab_Series.dat
│ │ ├── rand_ab_Series.exe
│ │ ├── rand.dat
│ │ ├── rand.exe
│ │ ├── rand_NormalDistributing_One.dat
│ │ ├── rand_NormalDistributing_One.exe
│ │ ├── rand_NormalDistributing_Series.dat
│ │ ├── rand_NormalDistributing_Series.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── rand_01_One.cpp
│ ├── rand_01_Series.cpp
│ ├── rand_ab_One.cpp
│ ├── rand_ab_Series.cpp
│ ├── rand.cpp
│ ├── rand_NormalDistributing_One.cpp
│ └── rand_NormalDistributing_Series.cpp
├── Chap04
│ ├── Chap4.dsp
│ ├── Chap4.dsw
│ ├── Chap4.ncb
│ ├── Chap4.opt
│ ├── Debug
│ │ ├── Chap4.ilk
│ │ ├── Chap4.pch
│ │ ├── Chap4.pdb
│ │ ├── FractionValue.dat
│ │ ├── FractionValue.exe
│ │ ├── PolyDiv.dat
│ │ ├── PolyDiv.exe
│ │ ├── PolyMultip.dat
│ │ ├── PolyMultip.exe
│ │ ├── PolyValueOneDim.dat
│ │ ├── PolyValueOneDim.exe
│ │ ├── PolyValueOneDimGroup.dat
│ │ ├── PolyValueOneDimGroup.exe
│ │ ├── PolyValueTwoDim.dat
│ │ ├── PolyValueTwoDim.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── FractionValue.cpp
│ ├── PolyDiv.cpp
│ ├── PolyMultip.cpp
│ ├── PolyValueOneDim.cpp
│ ├── PolyValueOneDimGroup.cpp
│ └── PolyValueTwoDim.cpp
├── Chap05
│ ├── Chap5.dsp
│ ├── Chap5.dsw
│ ├── Chap5.ncb
│ ├── Chap5.opt
│ ├── Debug
│ │ ├── Chap5.ilk
│ │ ├── Chap5.pch
│ │ ├── Chap5.pdb
│ │ ├── GeneralizedInversionSingularValue.dat
│ │ ├── GeneralizedInversionSingularValue.exe
│ │ ├── MatrixDeterminant.dat
│ │ ├── MatrixDeterminant.exe
│ │ ├── MatrixExample.dat
│ │ ├── MatrixExample.exe
│ │ ├── MatrixInversionGS.dat
│ │ ├── MatrixInversionGS.exe
│ │ ├── MatrixLU.dat
│ │ ├── MatrixLU.exe
│ │ ├── MatrixQR.dat
│ │ ├── MatrixQR.exe
│ │ ├── MatrixRank.dat
│ │ ├── MatrixRank.exe
│ │ ├── MatrixSingularValue.dat
│ │ ├── MatrixSingularValue.exe
│ │ ├── MatrixSymmetry.dat
│ │ ├── MatrixSymmetry.exe
│ │ ├── MatrixSymmetryRegularCholesky.dat
│ │ ├── MatrixSymmetryRegularCholesky.exe
│ │ ├── MatrixSymmetryRegular.dat
│ │ ├── MatrixSymmetryRegular.exe
│ │ ├── MatrixSymmetryRegularInversion.dat
│ │ ├── MatrixSymmetryRegularInversion.exe
│ │ ├── MatrixToeplitzInversionTrench.dat
│ │ ├── MatrixToeplitzInversionTrench.exe
│ │ ├── MatrixTranspose.dat
│ │ ├── MatrixTranspose.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── GeneralizedInversionSingularValue.cpp
│ ├── MatrixDeterminant.cpp
│ ├── MatrixExample.cpp
│ ├── MatrixInversionGS.cpp
│ ├── MatrixLU.cpp
│ ├── MatrixQR.cpp
│ ├── MatrixRank.cpp
│ ├── MatrixSingularValue.cpp
│ ├── MatrixSymmetry.cpp
│ ├── MatrixSymmetryRegularCholesky.cpp
│ ├── MatrixSymmetryRegular.cpp
│ ├── MatrixSymmetryRegularInversion.cpp
│ ├── MatrixToeplitzInversionTrench.cpp
│ └── MatrixTranspose.cpp
├── Chap06
│ ├── Chap6.dsp
│ ├── Chap6.dsw
│ ├── Chap6.ncb
│ ├── Chap6.opt
│ ├── Debug
│ │ ├── Chap6.ilk
│ │ ├── Chap6.pch
│ │ ├── Chap6.pdb
│ │ ├── EigenvalueVectorHessenbergQR.dat
│ │ ├── EigenvalueVectorHessenbergQR.exe
│ │ ├── EigenvalueVectorRealSymmetryJacobiB.dat
│ │ ├── EigenvalueVectorRealSymmetryJacobiB.exe
│ │ ├── EigenvalueVectorRealSymmetryJacobi.dat
│ │ ├── EigenvalueVectorRealSymmetryJacobi.exe
│ │ ├── EigenvalueVectorRealTriangleQR.dat
│ │ ├── EigenvalueVectorRealTriangleQR.exe
│ │ ├── HessenbergTransform.dat
│ │ ├── HessenbergTransform.exe
│ │ ├── HouseholderTransform.dat
│ │ ├── HouseholderTransform.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── EigenvalueVectorHessenbergQR.cpp
│ ├── EigenvalueVectorRealSymmetryJacobiB.cpp
│ ├── EigenvalueVectorRealSymmetryJacobi.cpp
│ ├── EigenvalueVectorRealTriangleQR.cpp
│ ├── HessenbergTransform.cpp
│ └── HouseholderTransform.cpp
├── Chap07
│ ├── Chap7.dsp
│ ├── Chap7.dsw
│ ├── Chap7.ncb
│ ├── Chap7.opt
│ ├── Debug
│ │ ├── Chap7.ilk
│ │ ├── Chap7.pch
│ │ ├── Chap7.pdb
│ │ ├── LE_GaussSeidelIteration.dat
│ │ ├── LE_GaussSeidelIteration.exe
│ │ ├── LE_IllConditionedEquation.dat
│ │ ├── LE_IllConditionedEquation.exe
│ │ ├── LE_LinearLeastSquareGeneralizedInverse.dat
│ │ ├── LE_LinearLeastSquareGeneralizedInverse.exe
│ │ ├── LE_LinearLeastSquareHouseholder.dat
│ │ ├── LE_LinearLeastSquareHouseholder.exe
│ │ ├── LE_SparseEuationTotalChoiceGaussJordan.dat
│ │ ├── LE_SparseEuationTotalChoiceGaussJordan.exe
│ │ ├── LE_StrapEquationGauss.dat
│ │ ├── LE_StrapEquationGauss.exe
│ │ ├── LE_SymmetryEquation.dat
│ │ ├── LE_SymmetryEquation.exe
│ │ ├── LE_SymmetryRegularEuationConjugateGradient.dat
│ │ ├── LE_SymmetryRegularEuationConjugateGradient.exe
│ │ ├── LE_SymmetryRegularEuationSquareRoot.dat
│ │ ├── LE_SymmetryRegularEuationSquareRoot.exe
│ │ ├── LE_ToeplitzEuationLevinson.dat
│ │ ├── LE_ToeplitzEuationLevinson.exe
│ │ ├── LE_TotalChoiceGauss.dat
│ │ ├── LE_TotalChoiceGauss.exe
│ │ ├── LE_TotalChoiceGaussJordan.dat
│ │ ├── LE_TotalChoiceGaussJordan.exe
│ │ ├── LE_TridiagonalEquationGauss.dat
│ │ ├── LE_TridiagonalEquationGauss.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── LE_GaussSeidelIteration.cpp
│ ├── LE_IllConditionedEquation.cpp
│ ├── LE_LinearLeastSquareGeneralizedInverse.cpp
│ ├── LE_LinearLeastSquareHouseholder.cpp
│ ├── LE_SparseEuationTotalChoiceGaussJordan.cpp
│ ├── LE_StrapEquationGauss.cpp
│ ├── LE_SymmetryEquation.cpp
│ ├── LE_SymmetryRegularEuationConjugateGradient.cpp
│ ├── LE_SymmetryRegularEuationSquareRoot.cpp
│ ├── LE_ToeplitzEuationLevinson.cpp
│ ├── LE_TotalChoiceGauss.cpp
│ ├── LE_TotalChoiceGaussJordan.cpp
│ └── LE_TridiagonalEquationGauss.cpp
├── Chap08
│ ├── Chap8.dsp
│ ├── Chap8.dsw
│ ├── Chap8.ncb
│ ├── Chap8.opt
│ ├── Debug
│ │ ├── Chap8.exe
│ │ ├── Chap8.ilk
│ │ ├── Chap8.pch
│ │ ├── Chap8.pdb
│ │ ├── RootAitken.dat
│ │ ├── RootAitken.exe
│ │ ├── RootFraction.dat
│ │ ├── RootFraction.exe
│ │ ├── RootGradient.dat
│ │ ├── RootGradient.exe
│ │ ├── RootHalves.dat
│ │ ├── RootHalves.exe
│ │ ├── RootLeastSquareGeneralizedInverse1.dat
│ │ ├── RootLeastSquareGeneralizedInverse1.exe
│ │ ├── RootLeastSquareGeneralizedInverse2.dat
│ │ ├── RootLeastSquareGeneralizedInverse2.exe
│ │ ├── RootMonteCarloComplex1.exe
│ │ ├── RootMonteCarloComplex2.exe
│ │ ├── RootMonteCarloComplex.dat
│ │ ├── RootMonteCarloGroupReal.dat
│ │ ├── RootMonteCarloGroupReal.exe
│ │ ├── RootMonteCarloReal.dat
│ │ ├── RootMonteCarloReal.exe
│ │ ├── RootNewton.dat
│ │ ├── RootNewton.exe
│ │ ├── RootNewtonHillDown.dat
│ │ ├── RootNewtonHillDown.exe
│ │ ├── RootQR.dat
│ │ ├── RootQR.exe
│ │ ├── RootQuasiNewton.dat
│ │ ├── RootQuasiNewton.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── RootAitken.cpp
│ ├── RootFraction.cpp
│ ├── RootGradient.cpp
│ ├── RootHalves.cpp
│ ├── RootLeastSquareGeneralizedInverse1.cpp
│ ├── RootLeastSquareGeneralizedInverse2.cpp
│ ├── RootMonteCarloComplex.cpp
│ ├── RootMonteCarloGroupReal.cpp
│ ├── RootMonteCarloReal.cpp
│ ├── RootNewton.cpp
│ ├── RootNewtonHillDown.cpp
│ ├── RootQR.cpp
│ └── RootQuasiNewton.cpp
├── Chap09
│ ├── Chap9.dsp
│ ├── Chap9.dsw
│ ├── Chap9.ncb
│ ├── Chap9.opt
│ ├── Debug
│ │ ├── Chap9.ilk
│ │ ├── Chap9.pch
│ │ ├── Chap9.pdb
│ │ ├── Interpolation1Variable3PointsIsometry.dat
│ │ ├── Interpolation1Variable3PointsIsometry.exe
│ │ ├── Interpolation1Variable3PointsNotIsometry.dat
│ │ ├── Interpolation1Variable3PointsNotIsometry.exe
│ │ ├── Interpolation1VariableIsometry.dat
│ │ ├── Interpolation1VariableIsometry.exe
│ │ ├── Interpolation1VariableNotIsometry.dat
│ │ ├── Interpolation1VariableNotIsometry.exe
│ │ ├── Interpolation2Variable3Points.dat
│ │ ├── Interpolation2Variable3Points.exe
│ │ ├── Interpolation2VariableWholeInterval.dat
│ │ ├── Interpolation2VariableWholeInterval.exe
│ │ ├── Interpolation3Spooling1stBoundary.dat
│ │ ├── Interpolation3Spooling1stBoundary.exe
│ │ ├── Interpolation3Spooling2ndBoundary.dat
│ │ ├── Interpolation3Spooling2ndBoundary.exe
│ │ ├── Interpolation3Spooling3thBoundary.dat
│ │ ├── Interpolation3Spooling3thBoundary.exe
│ │ ├── InterpolationAitkenIsometry.dat
│ │ ├── InterpolationAitkenIsometry.exe
│ │ ├── InterpolationAitkenNotIsometry.dat
│ │ ├── InterpolationAitkenNotIsometry.exe
│ │ ├── InterpolationFractionIsometry.dat
│ │ ├── InterpolationFractionIsometry.exe
│ │ ├── InterpolationFractionNotIsometry.dat
│ │ ├── InterpolationFractionNotIsometry.exe
│ │ ├── InterpolationHermiteIsometry.dat
│ │ ├── InterpolationHermiteIsometry.exe
│ │ ├── InterpolationHermiteNotIsometry.dat
│ │ ├── InterpolationHermiteNotIsometry.exe
│ │ ├── InterpolationSmoothIsometry.dat
│ │ ├── InterpolationSmoothIsometry.exe
│ │ ├── InterpolationSmoothNotIsometry.dat
│ │ ├── InterpolationSmoothNotIsometry.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── Interpolation1Variable3PointsIsometry.cpp
│ ├── Interpolation1Variable3PointsNotIsometry.cpp
│ ├── Interpolation1VariableIsometry.cpp
│ ├── Interpolation1VariableNotIsometry .cpp
│ ├── Interpolation2Variable3Points.cpp
│ ├── Interpolation2VariableWholeInterval.cpp
│ ├── Interpolation3Spooling1stBoundary.cpp
│ ├── Interpolation3Spooling2ndBoundary.cpp
│ ├── Interpolation3Spooling3thBoundary.cpp
│ ├── InterpolationAitkenIsometry.cpp
│ ├── InterpolationAitkenNotIsometry.cpp
│ ├── InterpolationFractionIsometry.cpp
│ ├── InterpolationFractionNotIsometry.cpp
│ ├── InterpolationHermiteIsometry.cpp
│ ├── InterpolationHermiteNotIsometry.cpp
│ ├── InterpolationSmoothIsometry.cpp
│ └── InterpolationSmoothNotIsometry.cpp
├── Chap10
│ ├── Chap10.dsp
│ ├── Chap10.dsw
│ ├── Chap10.ncb
│ ├── Chap10.opt
│ ├── Debug
│ │ ├── Chap10.ilk
│ │ ├── Chap10.pch
│ │ ├── Chap10.pdb
│ │ ├── IntegralChebyshev.dat
│ │ ├── IntegralChebyshev.exe
│ │ ├── IntegralFraction1D.dat
│ │ ├── IntegralFraction1D.exe
│ │ ├── IntegralFraction2D.dat
│ │ ├── IntegralFraction2D.exe
│ │ ├── IntegralGaussMD.dat
│ │ ├── IntegralGaussMD.exe
│ │ ├── IntegralHermiteGauss.dat
│ │ ├── IntegralHermiteGauss.exe
│ │ ├── IntegralLaguerreGauss.dat
│ │ ├── IntegralLaguerreGauss.exe
│ │ ├── IntegralLegendreGauss.dat
│ │ ├── IntegralLegendreGauss.exe
│ │ ├── IntegralMonteCarlo1D.dat
│ │ ├── IntegralMonteCarlo1D.exe
│ │ ├── IntegralMonteCarlo2D.dat
│ │ ├── IntegralMonteCarlo2D.exe
│ │ ├── IntegralRomberg.dat
│ │ ├── IntegralRomberg.exe
│ │ ├── IntegralSimpson1D.dat
│ │ ├── IntegralSimpson1D.exe
│ │ ├── IntegralSimpson2D.dat
│ │ ├── IntegralSimpson2D.exe
│ │ ├── IntegralSurge.dat
│ │ ├── IntegralSurge.exe
│ │ ├── IntegralTrapezia.dat
│ │ ├── IntegralTrapezia.exe
│ │ ├── IntegralTrapeziaSelfAdapt.dat
│ │ ├── IntegralTrapeziaSelfAdapt.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── IntegralChebyshev.cpp
│ ├── IntegralFraction1D.cpp
│ ├── IntegralFraction2D.cpp
│ ├── IntegralGaussMD.cpp
│ ├── IntegralHermiteGauss.cpp
│ ├── IntegralLaguerreGauss.cpp
│ ├── IntegralLegendreGauss.cpp
│ ├── IntegralMonteCarlo1D.cpp
│ ├── IntegralMonteCarlo2D.cpp
│ ├── IntegralRomberg.cpp
│ ├── IntegralSimpson1D.cpp
│ ├── IntegralSimpson2D.cpp
│ ├── IntegralSurge.cpp
│ ├── IntegralTrapezia.cpp
│ └── IntegralTrapeziaSelfAdapt.cpp
├── Chap11
│ ├── Chap11.dsp
│ ├── Chap11.dsw
│ ├── Chap11.ncb
│ ├── Chap11.opt
│ ├── Debug
│ │ ├── Chap11.ilk
│ │ ├── Chap11.pch
│ │ ├── Chap11.pdb
│ │ ├── ODE_AdamsInterval.dat
│ │ ├── ODE_AdamsInterval.exe
│ │ ├── ODE_BothSidesInterval.dat
│ │ ├── ODE_BothSidesInterval.exe
│ │ ├── ODE_EulerContentStep.dat
│ │ ├── ODE_EulerContentStep.exe
│ │ ├── ODE_EulerVariationalStep.dat
│ │ ├── ODE_EulerVariationalStep.exe
│ │ ├── ODE_Fraction.dat
│ │ ├── ODE_Fraction.exe
│ │ ├── ODE_FractionInterval.dat
│ │ ├── ODE_FractionInterval.exe
│ │ ├── ODE_Gear.dat
│ │ ├── ODE_Gear.exe
│ │ ├── ODE_GillVariationalStep.dat
│ │ ├── ODE_GillVariationalStep.exe
│ │ ├── ODE_GillVariationalStepInterval.dat
│ │ ├── ODE_GillVariationalStepInterval.exe
│ │ ├── ODE_HammingInterval.dat
│ │ ├── ODE_HammingInterval.exe
│ │ ├── ODE_LinearBoundaryValude.dat
│ │ ├── ODE_LinearBoundaryValude.exe
│ │ ├── ODE_MersonVariationalStep.dat
│ │ ├── ODE_MersonVariationalStep.exe
│ │ ├── ODE_RungeKuttaContentStep.dat
│ │ ├── ODE_RungeKuttaContentStep.exe
│ │ ├── ODE_RungeKuttaVariationalStep.dat
│ │ ├── ODE_RungeKuttaVariationalStep.exe
│ │ ├── ODE_Treanor.dat
│ │ ├── ODE_Treanor.exe
│ │ ├── ODE_TreanorInterval.dat
│ │ ├── ODE_TreanorInterval.exe
│ │ ├── ODE_WittyContentStep.dat
│ │ ├── ODE_WittyContentStep.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── ODE_AdamsInterval.cpp
│ ├── ODE_BothSidesInterval.cpp
│ ├── ODE_EulerContentStep.cpp
│ ├── ODE_EulerVariationalStep.cpp
│ ├── ODE_Fraction.cpp
│ ├── ODE_FractionInterval.cpp
│ ├── ODE_Gear.cpp
│ ├── ODE_GillVariationalStep.cpp
│ ├── ODE_GillVariationalStepInterval.cpp
│ ├── ODE_HammingInterval.cpp
│ ├── ODE_LinearBoundaryValude.cpp
│ ├── ODE_MersonVariationalStep.cpp
│ ├── ODE_RungeKuttaContentStep.cpp
│ ├── ODE_RungeKuttaVariationalStep.cpp
│ ├── ODE_Treanor.cpp
│ ├── ODE_TreanorInterval.cpp
│ └── ODE_WittyContentStep.cpp
├── Chap12
│ ├── ApproximationRemez.cpp
│ ├── Chap12.dsp
│ ├── Chap12.dsw
│ ├── Chap12.ncb
│ ├── Chap12.opt
│ ├── Debug
│ │ ├── ApproximationRemez.dat
│ │ ├── ApproximationRemez.exe
│ │ ├── Chap12.ilk
│ │ ├── Chap12.pch
│ │ ├── Chap12.pdb
│ │ ├── FitCurveChebyshev.dat
│ │ ├── FitCurveChebyshev.exe
│ │ ├── FitCurveLeastSquares.dat
│ │ ├── FitCurveLeastSquares.exe
│ │ ├── FitSurfaceLeastSquares.dat
│ │ ├── FitSurfaceLeastSquares.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── FitCurveChebyshev.cpp
│ ├── FitCurveLeastSquares.cpp
│ └── FitSurfaceLeastSquares.cpp
├── Chap13
│ ├── Chap13.dsp
│ ├── Chap13.dsw
│ ├── Chap13.ncb
│ ├── Chap13.opt
│ ├── Debug
│ │ ├── Chap13.ilk
│ │ ├── Chap13.pch
│ │ ├── Chap13.pdb
│ │ ├── HalfLogarithmCorrelation.dat
│ │ ├── HalfLogarithmCorrelation.exe
│ │ ├── LinearRegression1D.dat
│ │ ├── LinearRegression1D.exe
│ │ ├── LinearRegressionND.dat
│ │ ├── LinearRegressionND.exe
│ │ ├── LogarithmCorrelation.dat
│ │ ├── LogarithmCorrelation.exe
│ │ ├── StatRandomSample.dat
│ │ ├── StatRandomSample.exe
│ │ ├── StepwiseRegression.dat
│ │ ├── StepwiseRegression.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── HalfLogarithmCorrelation.cpp
│ ├── LinearRegression1D.cpp
│ ├── LinearRegressionND.cpp
│ ├── LogarithmCorrelation.cpp
│ ├── StatRandomSample.cpp
│ └── StepwiseRegression.cpp
├── Chap14
│ ├── Chap14.dsp
│ ├── Chap14.dsw
│ ├── Chap14.ncb
│ ├── Chap14.opt
│ ├── Debug
│ │ ├── Chap14.ilk
│ │ ├── Chap14.pch
│ │ ├── Chap14.pdb
│ │ ├── ExtremumBrentNonDerivative1D.dat
│ │ ├── ExtremumBrentNonDerivative1D.exe
│ │ ├── ExtremumComplexND.dat
│ │ ├── ExtremumComplexND.exe
│ │ ├── ExtremumFraction1D.dat
│ │ ├── ExtremumFraction1D.exe
│ │ ├── ExtremumFractionND.dat
│ │ ├── ExtremumFractionND.exe
│ │ ├── ExtremumGold1D.dat
│ │ ├── ExtremumGold1D.exe
│ │ ├── ExtremumLinePrograming.dat
│ │ ├── ExtremumLinePrograming.exe
│ │ ├── ExtremumSimplexND.dat
│ │ ├── ExtremumSimplexND.exe
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── ExtremumBrentNonDerivative1D.CPP
│ ├── ExtremumComplexND.cpp
│ ├── ExtremumFraction1D.cpp
│ ├── ExtremumFractionND.cpp
│ ├── ExtremumGold1D.CPP
│ ├── ExtremumLinePrograming.cpp
│ └── ExtremumSimplexND.cpp
├── Chap15
│ ├── Chap15.dsp
│ ├── Chap15.dsw
│ ├── Chap15.ncb
│ ├── Chap15.opt
│ ├── Debug
│ │ ├── Chap15.ilk
│ │ ├── Chap15.pch
│ │ ├── Chap15.pdb
│ │ ├── FourierSeriesApproach.dat
│ │ ├── FourierSeriesApproach.exe
│ │ ├── FourierTransform.dat
│ │ ├── FourierTransform.exe
│ │ ├── SievingABR.dat
│ │ ├── SievingABR.exe
│ │ ├── SievingKalman.dat
│ │ ├── SievingKalman.exe
│ │ ├── Smooth5_3.dat
│ │ ├── Smooth5_3.exe
│ │ ├── vc60.idb
│ │ ├── vc60.pdb
│ │ ├── WalshTransform.dat
│ │ └── WalshTransform.exe
│ ├── FourierSeriesApproach.cpp
│ ├── FourierTransform.cpp
│ ├── SievingABR.cpp
│ ├── SievingKalman.cpp
│ ├── Smooth5_3.cpp
│ └── WalshTransform.cpp
├── Chap16
│ ├── Chap16.dsp
│ ├── Chap16.dsw
│ ├── Chap16.ncb
│ ├── Chap16.opt
│ ├── CosineIntegralFunction.cpp
│ ├── Debug
│ │ ├── Chap16.ilk
│ │ ├── Chap16.pch
│ │ ├── Chap16.pdb
│ │ ├── CosineIntegralFunction.dat
│ │ ├── CosineIntegralFunction.exe
│ │ ├── Ellipse1stIntegral.dat
│ │ ├── Ellipse1stIntegral.exe
│ │ ├── Ellipse2ndIntegral.dat
│ │ ├── Ellipse2ndIntegral.exe
│ │ ├── ErrorFunction.dat
│ │ ├── ErrorFunction.exe
│ │ ├── ExponentIntegralFunction.dat
│ │ ├── ExponentIntegralFunction.exe
│ │ ├── FDistributionFunction.dat
│ │ ├── FDistributionFunction.exe
│ │ ├── GammaFunction.dat
│ │ ├── GammaFunction.exe
│ │ ├── IncompleteBetaFunction.dat
│ │ ├── IncompleteBetaFunction.exe
│ │ ├── IncompleteGammaFunction.dat
│ │ ├── IncompleteGammaFunction.exe
│ │ ├── IntegerBessel1stFunction.dat
│ │ ├── IntegerBessel1stFunction.exe
│ │ ├── IntegerBessel2ndFunction.dat
│ │ ├── IntegerBessel2ndFunction.exe
│ │ ├── NormalDistributionFunction.dat
│ │ ├── NormalDistributionFunction.exe
│ │ ├── SineIntegralFunction.dat
│ │ ├── SineIntegralFunction.exe
│ │ ├── tDistributionFunction.dat
│ │ ├── tDistributionFunction.exe
│ │ ├── TransformativeIntegerBessel1stFunction.dat
│ │ ├── TransformativeIntegerBessel1stFunction.exe
│ │ ├── TransformativeIntegerBessel2ndFunction.dat
│ │ ├── TransformativeIntegerBessel2ndFunction.exe
│ │ ├── vc60.idb
│ │ ├── vc60.pdb
│ │ ├── X2DistributionFunction.dat
│ │ └── X2DistributionFunction.exe
│ ├── Ellipse1stIntegral.cpp
│ ├── Ellipse2ndIntegral.cpp
│ ├── ErrorFunction.cpp
│ ├── ExponentIntegralFunction.cpp
│ ├── FDistributionFunction.cpp
│ ├── GammaFunction.cpp
│ ├── IncompleteBetaFunction.cpp
│ ├── IncompleteGammaFunction.cpp
│ ├── IntegerBessel1stFunction.cpp
│ ├── IntegerBessel2ndFunction.cpp
│ ├── NormalDistributionFunction.cpp
│ ├── SineIntegralFunction.cpp
│ ├── tDistributionFunction.cpp
│ ├── TransformativeIntegerBessel1stFunction.cpp
│ ├── TransformativeIntegerBessel2ndFunction.cpp
│ └── X2DistributionFunction.cpp
├── include
│ ├── Comm.h
│ ├── Comm.inl
│ ├── EigenvalueVector.h
│ ├── EigenvalueVector.inl
│ ├── Extremum.h
│ ├── Extremum.inl
│ ├── FittingApproximation.h
│ ├── FittingApproximation.inl
│ ├── Integral.h
│ ├── Integral.inl
│ ├── Interpolation.h
│ ├── Interpolation.inl
│ ├── LinearEquation.h
│ ├── LinearEquation.inl
│ ├── Matrix.h
│ ├── Matrix.inl
│ ├── NonLinearEquation.h
│ ├── NonLinearEquation.inl
│ ├── OrdinaryDifferentialEguation.h
│ ├── OrdinaryDifferentialEguation.inl
│ ├── Polynomials.h
│ ├── Polynomials.inl
│ ├── Random.h
│ ├── Random.inl
│ ├── SpecialFunction.h
│ ├── SpecialFunction.inl
│ ├── Statistic.h
│ ├── Statistic.inl
│ ├── Transform.h
│ └── Transform.inl
└── 使用说明.pdf
34 directories, 628 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论