├── .gitignore ├── C# ├── BasicMatrixOperations │ ├── BasicMatrixOperations.sln │ └── BasicMatrixOperations │ │ ├── App.config │ │ ├── BasicMatrixOperations.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── BisectionMethod │ └── bisectionmethod.cs ├── GaussianEliminationMethod │ └── gaussianeliminationmethod.cs ├── InverseMatrixwithCramersRule │ └── inversematrixcramersrule.cs ├── InverseMatrixwithGaussianEliminationMethod │ ├── InverseMatrixwithGaussianEliminationMethod.sln │ └── InverseMatrixwithGaussianEliminationMethod │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── LUDecompositionMethod │ ├── LUDecompositionMethod.sln │ └── LUDecompositionMethod │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── LUDecompositionMethod.csproj │ │ ├── Program.cs │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── MaximumFieldForm │ └── maximumfieldform.cs ├── NewtonMethod │ └── newtonmethod.cs ├── RegulaFalsiMethod │ └── regulafalsimethod.cs └── SecantMethod │ └── secantmethod.cs ├── C++ ├── 1_by_3_simpsons │ └── .333_simpsons.cpp ├── 3_by_8_simpsons │ └── .375_simpsons.cpp ├── backward_difference │ └── backward_difference.cpp ├── bisection │ ├── Makefile │ └── bisectionmethod.cpp ├── bisection_method.cpp │ ├── bisectionmethod.cpp │ └── bisectionmethod_iteration.cpp ├── euler's │ └── euler's_method.cpp ├── exponential_fit │ └── exponetial_fit.cpp ├── fixed_point_iteration │ └── fixed_point_iteration.cpp ├── forward_difference │ └── forward_difference.cpp ├── gen-newton │ └── gen_newton.cpp ├── newtons-method │ ├── newton's_method(with iteration printing).cpp │ └── newtons-method.cpp ├── num-differentiation │ ├── numerical_diff(forward).cpp │ └── numerical_diff_(backward).cpp ├── power-fit │ └── power_fit.cpp ├── quadratic-fit │ └── quadratic_fit.cpp ├── rk2 │ └── rk2.cpp ├── secant │ ├── secant.cpp │ └── secant_method(with iteration printing).cpp ├── straight_line_interpolation │ └── straight_line_interpolation.cpp ├── trapezoidal │ └── trapezoidal_integral.cpp └── weddle's rule │ └── weddle.cpp ├── C ├── bisection │ ├── Makefile │ └── bisection.c ├── matrixlib │ ├── Makefile │ ├── main.c │ ├── matrix.c │ └── matrix.h └── newtons-method │ ├── newton │ ├── newtons │ └── newtons-method.c ├── Go ├── bisectionmethod.go ├── matrixoperations.go ├── newtonmethod.go └── secantmethod.go ├── Haskell ├── BisectionMethod.hs ├── LagrangeInterpolation.hs ├── MaximumFieldForm.hs ├── NewtonsMethod.hs ├── SecantMethod.hs └── SplineInterpolation.hs ├── Java └── Bairstow's Numerical Analysis method.java ├── LICENSE ├── Python ├── GaussianCurveFit.py ├── KmeanLibVersion.py ├── KmeanNonLibVersion.py ├── NonLinearLeastSquaresFitting.py ├── NormalEquationBuildinInput.py ├── NormalEquationTextInput.py ├── PolynomialFit.py ├── PowerMethod.py ├── bisectionmethod.py ├── data │ ├── cricket_chirps_versus_temperature.txt │ └── iris.data ├── fixedpoint.py ├── knnNoLib.py ├── lagrangeinterpolation.py ├── leastsquares.py ├── maximumfieldform.py ├── mullersmethod.py ├── newtonmethod.py ├── polynomial_calculus.py ├── regulafalsimethod.py └── secantmethod.py ├── README.md ├── Racket (Scheme) ├── bisection.rkt └── newtons-method.rkt └── Ruby ├── bisectionmethod.rb ├── maximumfieldform.rb ├── newtonmethod.rb ├── regulafalsimethod.rb └── secantmethod.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations.sln -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/App.config -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/BasicMatrixOperations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/BasicMatrixOperations.csproj -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/Form1.Designer.cs -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/Form1.cs -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/Form1.resx -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/Program.cs -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/Properties/Resources.resx -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /C#/BasicMatrixOperations/BasicMatrixOperations/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BasicMatrixOperations/BasicMatrixOperations/Properties/Settings.settings -------------------------------------------------------------------------------- /C#/BisectionMethod/bisectionmethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/BisectionMethod/bisectionmethod.cs -------------------------------------------------------------------------------- /C#/GaussianEliminationMethod/gaussianeliminationmethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/GaussianEliminationMethod/gaussianeliminationmethod.cs -------------------------------------------------------------------------------- /C#/InverseMatrixwithCramersRule/inversematrixcramersrule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithCramersRule/inversematrixcramersrule.cs -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod.sln -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/App.config -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Form1.Designer.cs -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Form1.cs -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Form1.resx -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Program.cs -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Properties/Resources.resx -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/InverseMatrixwithGaussianEliminationMethod/InverseMatrixwithGaussianEliminationMethod/Properties/Settings.settings -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod.sln -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/App.config -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/Form1.Designer.cs -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/Form1.cs -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/Form1.resx -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/LUDecompositionMethod.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/LUDecompositionMethod.csproj -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/Program.cs -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/Properties/Resources.resx -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /C#/LUDecompositionMethod/LUDecompositionMethod/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/LUDecompositionMethod/LUDecompositionMethod/Properties/Settings.settings -------------------------------------------------------------------------------- /C#/MaximumFieldForm/maximumfieldform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/MaximumFieldForm/maximumfieldform.cs -------------------------------------------------------------------------------- /C#/NewtonMethod/newtonmethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/NewtonMethod/newtonmethod.cs -------------------------------------------------------------------------------- /C#/RegulaFalsiMethod/regulafalsimethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/RegulaFalsiMethod/regulafalsimethod.cs -------------------------------------------------------------------------------- /C#/SecantMethod/secantmethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C#/SecantMethod/secantmethod.cs -------------------------------------------------------------------------------- /C++/1_by_3_simpsons/.333_simpsons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/1_by_3_simpsons/.333_simpsons.cpp -------------------------------------------------------------------------------- /C++/3_by_8_simpsons/.375_simpsons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/3_by_8_simpsons/.375_simpsons.cpp -------------------------------------------------------------------------------- /C++/backward_difference/backward_difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/backward_difference/backward_difference.cpp -------------------------------------------------------------------------------- /C++/bisection/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/bisection/Makefile -------------------------------------------------------------------------------- /C++/bisection/bisectionmethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/bisection/bisectionmethod.cpp -------------------------------------------------------------------------------- /C++/bisection_method.cpp/bisectionmethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/bisection_method.cpp/bisectionmethod.cpp -------------------------------------------------------------------------------- /C++/bisection_method.cpp/bisectionmethod_iteration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/bisection_method.cpp/bisectionmethod_iteration.cpp -------------------------------------------------------------------------------- /C++/euler's/euler's_method.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/euler's/euler's_method.cpp -------------------------------------------------------------------------------- /C++/exponential_fit/exponetial_fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/exponential_fit/exponetial_fit.cpp -------------------------------------------------------------------------------- /C++/fixed_point_iteration/fixed_point_iteration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/fixed_point_iteration/fixed_point_iteration.cpp -------------------------------------------------------------------------------- /C++/forward_difference/forward_difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/forward_difference/forward_difference.cpp -------------------------------------------------------------------------------- /C++/gen-newton/gen_newton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/gen-newton/gen_newton.cpp -------------------------------------------------------------------------------- /C++/newtons-method/newton's_method(with iteration printing).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/newtons-method/newton's_method(with iteration printing).cpp -------------------------------------------------------------------------------- /C++/newtons-method/newtons-method.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/newtons-method/newtons-method.cpp -------------------------------------------------------------------------------- /C++/num-differentiation/numerical_diff(forward).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/num-differentiation/numerical_diff(forward).cpp -------------------------------------------------------------------------------- /C++/num-differentiation/numerical_diff_(backward).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/num-differentiation/numerical_diff_(backward).cpp -------------------------------------------------------------------------------- /C++/power-fit/power_fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/power-fit/power_fit.cpp -------------------------------------------------------------------------------- /C++/quadratic-fit/quadratic_fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/quadratic-fit/quadratic_fit.cpp -------------------------------------------------------------------------------- /C++/rk2/rk2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/rk2/rk2.cpp -------------------------------------------------------------------------------- /C++/secant/secant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/secant/secant.cpp -------------------------------------------------------------------------------- /C++/secant/secant_method(with iteration printing).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/secant/secant_method(with iteration printing).cpp -------------------------------------------------------------------------------- /C++/straight_line_interpolation/straight_line_interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/straight_line_interpolation/straight_line_interpolation.cpp -------------------------------------------------------------------------------- /C++/trapezoidal/trapezoidal_integral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/trapezoidal/trapezoidal_integral.cpp -------------------------------------------------------------------------------- /C++/weddle's rule/weddle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C++/weddle's rule/weddle.cpp -------------------------------------------------------------------------------- /C/bisection/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C/bisection/Makefile -------------------------------------------------------------------------------- /C/bisection/bisection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C/bisection/bisection.c -------------------------------------------------------------------------------- /C/matrixlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C/matrixlib/Makefile -------------------------------------------------------------------------------- /C/matrixlib/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C/matrixlib/main.c -------------------------------------------------------------------------------- /C/matrixlib/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C/matrixlib/matrix.c -------------------------------------------------------------------------------- /C/matrixlib/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C/matrixlib/matrix.h -------------------------------------------------------------------------------- /C/newtons-method/newton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C/newtons-method/newton -------------------------------------------------------------------------------- /C/newtons-method/newtons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C/newtons-method/newtons -------------------------------------------------------------------------------- /C/newtons-method/newtons-method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/C/newtons-method/newtons-method.c -------------------------------------------------------------------------------- /Go/bisectionmethod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Go/bisectionmethod.go -------------------------------------------------------------------------------- /Go/matrixoperations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Go/matrixoperations.go -------------------------------------------------------------------------------- /Go/newtonmethod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Go/newtonmethod.go -------------------------------------------------------------------------------- /Go/secantmethod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Go/secantmethod.go -------------------------------------------------------------------------------- /Haskell/BisectionMethod.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Haskell/BisectionMethod.hs -------------------------------------------------------------------------------- /Haskell/LagrangeInterpolation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Haskell/LagrangeInterpolation.hs -------------------------------------------------------------------------------- /Haskell/MaximumFieldForm.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Haskell/MaximumFieldForm.hs -------------------------------------------------------------------------------- /Haskell/NewtonsMethod.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Haskell/NewtonsMethod.hs -------------------------------------------------------------------------------- /Haskell/SecantMethod.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Haskell/SecantMethod.hs -------------------------------------------------------------------------------- /Haskell/SplineInterpolation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Haskell/SplineInterpolation.hs -------------------------------------------------------------------------------- /Java/Bairstow's Numerical Analysis method.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Java/Bairstow's Numerical Analysis method.java -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/GaussianCurveFit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/GaussianCurveFit.py -------------------------------------------------------------------------------- /Python/KmeanLibVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/KmeanLibVersion.py -------------------------------------------------------------------------------- /Python/KmeanNonLibVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/KmeanNonLibVersion.py -------------------------------------------------------------------------------- /Python/NonLinearLeastSquaresFitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/NonLinearLeastSquaresFitting.py -------------------------------------------------------------------------------- /Python/NormalEquationBuildinInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/NormalEquationBuildinInput.py -------------------------------------------------------------------------------- /Python/NormalEquationTextInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/NormalEquationTextInput.py -------------------------------------------------------------------------------- /Python/PolynomialFit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/PolynomialFit.py -------------------------------------------------------------------------------- /Python/PowerMethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/PowerMethod.py -------------------------------------------------------------------------------- /Python/bisectionmethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/bisectionmethod.py -------------------------------------------------------------------------------- /Python/data/cricket_chirps_versus_temperature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/data/cricket_chirps_versus_temperature.txt -------------------------------------------------------------------------------- /Python/data/iris.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/data/iris.data -------------------------------------------------------------------------------- /Python/fixedpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/fixedpoint.py -------------------------------------------------------------------------------- /Python/knnNoLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/knnNoLib.py -------------------------------------------------------------------------------- /Python/lagrangeinterpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/lagrangeinterpolation.py -------------------------------------------------------------------------------- /Python/leastsquares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/leastsquares.py -------------------------------------------------------------------------------- /Python/maximumfieldform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/maximumfieldform.py -------------------------------------------------------------------------------- /Python/mullersmethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/mullersmethod.py -------------------------------------------------------------------------------- /Python/newtonmethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/newtonmethod.py -------------------------------------------------------------------------------- /Python/polynomial_calculus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/polynomial_calculus.py -------------------------------------------------------------------------------- /Python/regulafalsimethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/regulafalsimethod.py -------------------------------------------------------------------------------- /Python/secantmethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Python/secantmethod.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/README.md -------------------------------------------------------------------------------- /Racket (Scheme)/bisection.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Racket (Scheme)/bisection.rkt -------------------------------------------------------------------------------- /Racket (Scheme)/newtons-method.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Racket (Scheme)/newtons-method.rkt -------------------------------------------------------------------------------- /Ruby/bisectionmethod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Ruby/bisectionmethod.rb -------------------------------------------------------------------------------- /Ruby/maximumfieldform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Ruby/maximumfieldform.rb -------------------------------------------------------------------------------- /Ruby/newtonmethod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Ruby/newtonmethod.rb -------------------------------------------------------------------------------- /Ruby/regulafalsimethod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Ruby/regulafalsimethod.rb -------------------------------------------------------------------------------- /Ruby/secantmethod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergenekonyigit/Numerical-Analysis-Examples/HEAD/Ruby/secantmethod.rb --------------------------------------------------------------------------------