# nlesolver-fortran **Repository Path**: fortran-base/nlesolver-fortran ## Basic Information - **Project Name**: nlesolver-fortran - **Description**: 非线性方程组求解 - **Primary Language**: FORTRAN - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: https://github.com/jacobwilliams/nlesolver-fortran - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-05-20 - **Last Updated**: 2022-05-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![nlesolver-fortran](media/logo.png) ============ Nonlinear Equation Solver with Modern Fortran. A basic Newton-Raphson type nonlinear equation solver for dense systems with `m` functions of `n` input variables. A work in progress. ### Status [![CI Status](https://github.com/jacobwilliams/nlesolver-fortran/actions/workflows/CI.yml/badge.svg)](https://github.com/jacobwilliams/nlesolver-fortran/actions) [![GitHub release](https://img.shields.io/github/release/jacobwilliams/nlesolver-fortran.svg)](https://github.com/jacobwilliams/nlesolver-fortran/releases/latest) [![codecov](https://codecov.io/gh/jacobwilliams/nlesolver-fortran/branch/master/graph/badge.svg)](https://codecov.io/gh/jacobwilliams/nlesolver-fortran) [![last-commit](https://img.shields.io/github/last-commit/jacobwilliams/nlesolver-fortran)](https://github.com/jacobwilliams/nlesolver-fortran/commits/master) ### Features * Is object-oriented. * Works with square, under-determined, or over-determined systems. * Uses LAPACK routines (`dgesv` or `dgels`) to solve the linear system. * if `n=m`, uses `dgesv` (LU decomposition) * if `n/=m`, uses `dgels` (if `m>n` uses QR factorization, if `m