Skip to content
Snippets Groups Projects
Commit b8fc1ec3 authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

polynomial: add more doc

parent f6d151bb
No related branches found
No related tags found
1 merge request!82add mo_polynomial with tests
Pipeline #279206 passed with stages
in 6 minutes and 28 seconds
......@@ -4,6 +4,12 @@
!> \brief Module to handle polynomials.
!> \details This module provides routines to deal with polynomials like evaluation, root finding or derivation.
!!
!! Polynomials of order (n-1) are represented by an array of n coefficients `p = (p_1, p_2, ..., p_n)` starting with the coefficient for the biggest exponent:
!! \code{.f90}
!! P(x) = p_1 * x^(n-1) + p_2 * x^(n-2) ... + p_n
!! \endcode
!!
!> \version 0.1
!> \authors Sebastian Mueller
!> \date Oct 2024
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment