├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── other.xml └── pythonProject3.iml ├── C++ ├── .idea │ ├── .gitignore │ ├── .name │ ├── GTS.iml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── CMakeLists.txt ├── Chiadoi.cpp ├── Chiadoi.exe ├── Daycung.cpp ├── Daycung.exe ├── Gauss_Jordan.cpp ├── Gauss_Seidei.cpp ├── Gauss_Seidei.exe ├── HinhThang.cpp ├── Jacobi_Iteration.cpp ├── Lagrange.cpp ├── Newton.cpp ├── PPLap.cpp ├── Simpson.cpp ├── Tieptuyen.cpp ├── Tieptuyen.exe └── cmake-build-debug │ ├── .cmake │ └── api │ │ └── v1 │ │ ├── query │ │ ├── cache-v2 │ │ ├── cmakeFiles-v1 │ │ ├── codemodel-v2 │ │ └── toolchains-v1 │ │ └── reply │ │ ├── cache-v2-1ac3b94257aa6e24a6b7.json │ │ ├── cmakeFiles-v1-4dcdf56e0795f89fa3a8.json │ │ ├── codemodel-v2-04b838885be14c251f8a.json │ │ ├── directory-.-Debug-d0094a50bb2071803777.json │ │ ├── index-2023-07-05T09-42-10-0880.json │ │ ├── target-GTS-Debug-1dc6cdd1cbb5ac530793.json │ │ └── toolchains-v1-f5c3b15f757f63a9d46e.json │ ├── .ninja_deps │ ├── .ninja_log │ ├── CMakeCache.txt │ ├── CMakeFiles │ ├── 3.25.2 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeRCCompiler.cmake │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ └── a.exe │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── a.exe │ ├── CMakeDirectoryInformation.cmake │ ├── CMakeOutput.log │ ├── GTS.dir │ │ ├── DependInfo.cmake │ │ ├── build.make │ │ ├── cmake_clean.cmake │ │ ├── compiler_depend.make │ │ ├── compiler_depend.ts │ │ ├── depend.make │ │ ├── flags.make │ │ ├── link.txt │ │ ├── linkLibs.rsp │ │ ├── objects1 │ │ └── progress.make │ ├── Makefile.cmake │ ├── Makefile2 │ ├── TargetDirectories.txt │ ├── clion-Debug-log.txt │ ├── clion-environment.txt │ ├── cmake.check_cache │ └── progress.marks │ ├── GTS.cbp │ ├── Makefile │ ├── Testing │ └── Temporary │ │ └── LastTest.log │ ├── build.ninja │ └── cmake_install.cmake ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Python ├── BangSaiPhan │ └── BangSaiPhan.py ├── Gauss │ ├── BigGauss.py │ ├── Extension_KhiemSP.py │ ├── Gauss1.py │ ├── Gauss2.py │ ├── __pycache__ │ │ ├── Extension_KhiemSP.cpython-310.pyc │ │ ├── Gauss1.cpython-310.pyc │ │ └── Gauss2.cpython-310.pyc │ └── input.txt ├── Jacobi │ ├── Jacobi.py │ └── input.txt ├── Lagrange │ ├── Lagrange.py │ └── inputLagrange.txt ├── Newtonmocbatki │ ├── NoiSuyNewTon_MocBatKi.py │ └── inputNewtonBatKy.txt ├── NoiSuyNewTon_Dothi │ ├── NewTonLui.py │ ├── NewtonTien.py │ ├── NoiSuyNewTon.py │ ├── input.txt │ └── newton.png ├── NoiSuyNewTon_Moccachdeu │ ├── NoiSuyNewTon_MocCachDeu.py │ └── inputNewtonCachDeu.txt ├── NoiSuyTrungTam │ ├── NoiSuyTrungTam.py │ └── inputGauss.txt ├── PhuongPhapChiaDoi │ ├── BisectionMethod.py │ └── BisectionMethod_Count.py ├── PhuongPhapDayCung │ └── BowstringMethod.py ├── PhuongPhapLap │ ├── IterationMethod.py │ └── IterationMethod_NonCount.py ├── PhuongPhapTiepTuyen │ └── TangentMethod.py ├── TinhgandungDaoHamvaTichPhan │ ├── GandungTichPhan.py │ ├── Gandungdaoham.py │ ├── Input.txt │ ├── Tich_gan_dung_tich_phan_HinhThang_Fx.py │ └── Tính gần đúng tích phân.py └── pilot │ ├── input.txt │ └── pilot.py └── README.md /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/pythonProject3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/.idea/pythonProject3.iml -------------------------------------------------------------------------------- /C++/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/.idea/.gitignore -------------------------------------------------------------------------------- /C++/.idea/.name: -------------------------------------------------------------------------------- 1 | GTS -------------------------------------------------------------------------------- /C++/.idea/GTS.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/.idea/GTS.iml -------------------------------------------------------------------------------- /C++/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/.idea/misc.xml -------------------------------------------------------------------------------- /C++/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/.idea/modules.xml -------------------------------------------------------------------------------- /C++/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/.idea/vcs.xml -------------------------------------------------------------------------------- /C++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/CMakeLists.txt -------------------------------------------------------------------------------- /C++/Chiadoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Chiadoi.cpp -------------------------------------------------------------------------------- /C++/Chiadoi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Chiadoi.exe -------------------------------------------------------------------------------- /C++/Daycung.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Daycung.cpp -------------------------------------------------------------------------------- /C++/Daycung.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Daycung.exe -------------------------------------------------------------------------------- /C++/Gauss_Jordan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Gauss_Jordan.cpp -------------------------------------------------------------------------------- /C++/Gauss_Seidei.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Gauss_Seidei.cpp -------------------------------------------------------------------------------- /C++/Gauss_Seidei.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Gauss_Seidei.exe -------------------------------------------------------------------------------- /C++/HinhThang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/HinhThang.cpp -------------------------------------------------------------------------------- /C++/Jacobi_Iteration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Jacobi_Iteration.cpp -------------------------------------------------------------------------------- /C++/Lagrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Lagrange.cpp -------------------------------------------------------------------------------- /C++/Newton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Newton.cpp -------------------------------------------------------------------------------- /C++/PPLap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/PPLap.cpp -------------------------------------------------------------------------------- /C++/Simpson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Simpson.cpp -------------------------------------------------------------------------------- /C++/Tieptuyen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Tieptuyen.cpp -------------------------------------------------------------------------------- /C++/Tieptuyen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/Tieptuyen.exe -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/query/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/query/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/query/toolchains-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/reply/cache-v2-1ac3b94257aa6e24a6b7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/.cmake/api/v1/reply/cache-v2-1ac3b94257aa6e24a6b7.json -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-4dcdf56e0795f89fa3a8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-4dcdf56e0795f89fa3a8.json -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-04b838885be14c251f8a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-04b838885be14c251f8a.json -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/reply/index-2023-07-05T09-42-10-0880.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/.cmake/api/v1/reply/index-2023-07-05T09-42-10-0880.json -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/reply/target-GTS-Debug-1dc6cdd1cbb5ac530793.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/.cmake/api/v1/reply/target-GTS-Debug-1dc6cdd1cbb5ac530793.json -------------------------------------------------------------------------------- /C++/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-f5c3b15f757f63a9d46e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-f5c3b15f757f63a9d46e.json -------------------------------------------------------------------------------- /C++/cmake-build-debug/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/.ninja_deps -------------------------------------------------------------------------------- /C++/cmake-build-debug/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/.ninja_log -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeCache.txt -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeRCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeRCCompiler.cmake -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/3.25.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdC/a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdC/a.exe -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdCXX/a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdCXX/a.exe -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/DependInfo.cmake -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/build.make -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/compiler_depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/compiler_depend.make -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/compiler_depend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/compiler_depend.ts -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/depend.make -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/flags.make -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/link.txt -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/linkLibs.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/linkLibs.rsp -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/objects1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/objects1 -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/GTS.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/GTS.dir/progress.make -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/clion-Debug-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/clion-Debug-log.txt -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/clion-environment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/clion-environment.txt -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /C++/cmake-build-debug/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /C++/cmake-build-debug/GTS.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/GTS.cbp -------------------------------------------------------------------------------- /C++/cmake-build-debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/Makefile -------------------------------------------------------------------------------- /C++/cmake-build-debug/Testing/Temporary/LastTest.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/Testing/Temporary/LastTest.log -------------------------------------------------------------------------------- /C++/cmake-build-debug/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/build.ninja -------------------------------------------------------------------------------- /C++/cmake-build-debug/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/C++/cmake-build-debug/cmake_install.cmake -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/BangSaiPhan/BangSaiPhan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/BangSaiPhan/BangSaiPhan.py -------------------------------------------------------------------------------- /Python/Gauss/BigGauss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Gauss/BigGauss.py -------------------------------------------------------------------------------- /Python/Gauss/Extension_KhiemSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Gauss/Extension_KhiemSP.py -------------------------------------------------------------------------------- /Python/Gauss/Gauss1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Gauss/Gauss1.py -------------------------------------------------------------------------------- /Python/Gauss/Gauss2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Gauss/Gauss2.py -------------------------------------------------------------------------------- /Python/Gauss/__pycache__/Extension_KhiemSP.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Gauss/__pycache__/Extension_KhiemSP.cpython-310.pyc -------------------------------------------------------------------------------- /Python/Gauss/__pycache__/Gauss1.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Gauss/__pycache__/Gauss1.cpython-310.pyc -------------------------------------------------------------------------------- /Python/Gauss/__pycache__/Gauss2.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Gauss/__pycache__/Gauss2.cpython-310.pyc -------------------------------------------------------------------------------- /Python/Gauss/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Gauss/input.txt -------------------------------------------------------------------------------- /Python/Jacobi/Jacobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Jacobi/Jacobi.py -------------------------------------------------------------------------------- /Python/Jacobi/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Jacobi/input.txt -------------------------------------------------------------------------------- /Python/Lagrange/Lagrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Lagrange/Lagrange.py -------------------------------------------------------------------------------- /Python/Lagrange/inputLagrange.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Lagrange/inputLagrange.txt -------------------------------------------------------------------------------- /Python/Newtonmocbatki/NoiSuyNewTon_MocBatKi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Newtonmocbatki/NoiSuyNewTon_MocBatKi.py -------------------------------------------------------------------------------- /Python/Newtonmocbatki/inputNewtonBatKy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/Newtonmocbatki/inputNewtonBatKy.txt -------------------------------------------------------------------------------- /Python/NoiSuyNewTon_Dothi/NewTonLui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/NoiSuyNewTon_Dothi/NewTonLui.py -------------------------------------------------------------------------------- /Python/NoiSuyNewTon_Dothi/NewtonTien.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/NoiSuyNewTon_Dothi/NewtonTien.py -------------------------------------------------------------------------------- /Python/NoiSuyNewTon_Dothi/NoiSuyNewTon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/NoiSuyNewTon_Dothi/NoiSuyNewTon.py -------------------------------------------------------------------------------- /Python/NoiSuyNewTon_Dothi/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/NoiSuyNewTon_Dothi/input.txt -------------------------------------------------------------------------------- /Python/NoiSuyNewTon_Dothi/newton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/NoiSuyNewTon_Dothi/newton.png -------------------------------------------------------------------------------- /Python/NoiSuyNewTon_Moccachdeu/NoiSuyNewTon_MocCachDeu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/NoiSuyNewTon_Moccachdeu/NoiSuyNewTon_MocCachDeu.py -------------------------------------------------------------------------------- /Python/NoiSuyNewTon_Moccachdeu/inputNewtonCachDeu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/NoiSuyNewTon_Moccachdeu/inputNewtonCachDeu.txt -------------------------------------------------------------------------------- /Python/NoiSuyTrungTam/NoiSuyTrungTam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/NoiSuyTrungTam/NoiSuyTrungTam.py -------------------------------------------------------------------------------- /Python/NoiSuyTrungTam/inputGauss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/NoiSuyTrungTam/inputGauss.txt -------------------------------------------------------------------------------- /Python/PhuongPhapChiaDoi/BisectionMethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/PhuongPhapChiaDoi/BisectionMethod.py -------------------------------------------------------------------------------- /Python/PhuongPhapChiaDoi/BisectionMethod_Count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/PhuongPhapChiaDoi/BisectionMethod_Count.py -------------------------------------------------------------------------------- /Python/PhuongPhapDayCung/BowstringMethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/PhuongPhapDayCung/BowstringMethod.py -------------------------------------------------------------------------------- /Python/PhuongPhapLap/IterationMethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/PhuongPhapLap/IterationMethod.py -------------------------------------------------------------------------------- /Python/PhuongPhapLap/IterationMethod_NonCount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/PhuongPhapLap/IterationMethod_NonCount.py -------------------------------------------------------------------------------- /Python/PhuongPhapTiepTuyen/TangentMethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/PhuongPhapTiepTuyen/TangentMethod.py -------------------------------------------------------------------------------- /Python/TinhgandungDaoHamvaTichPhan/GandungTichPhan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/TinhgandungDaoHamvaTichPhan/GandungTichPhan.py -------------------------------------------------------------------------------- /Python/TinhgandungDaoHamvaTichPhan/Gandungdaoham.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/TinhgandungDaoHamvaTichPhan/Gandungdaoham.py -------------------------------------------------------------------------------- /Python/TinhgandungDaoHamvaTichPhan/Input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/TinhgandungDaoHamvaTichPhan/Input.txt -------------------------------------------------------------------------------- /Python/TinhgandungDaoHamvaTichPhan/Tich_gan_dung_tich_phan_HinhThang_Fx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/TinhgandungDaoHamvaTichPhan/Tich_gan_dung_tich_phan_HinhThang_Fx.py -------------------------------------------------------------------------------- /Python/TinhgandungDaoHamvaTichPhan/Tính gần đúng tích phân.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/TinhgandungDaoHamvaTichPhan/Tính gần đúng tích phân.py -------------------------------------------------------------------------------- /Python/pilot/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/pilot/input.txt -------------------------------------------------------------------------------- /Python/pilot/pilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/Python/pilot/pilot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangmanhkhiem/Numerical_Analysis/HEAD/README.md --------------------------------------------------------------------------------