Readme.md.txt 699 B

12345678910111213141516
  1. ## Orthogonal Polynomials
  2. **Description:**
  3. The OrthPol(KF, n, x) function computes orthogonal polynomials: Chebyshev, Laguerre, Hermite polynomials, and their derivatives using recurrence relations.
  4. **Parameters:**
  5. 1. KF - parameter specifying the orthogonal polynomial
  6. * KF = 1 for Chebyshev polynomial of the first kind
  7. * KF = 2 for Chebyshev polynomial of the second kind
  8. * KF = 3 for Laguerre polynomial
  9. * KF = 4 for Hermite polynomial
  10. 2. n - integer order of orthogonal polynomial.
  11. 3. x - argument of orthogonal polynomial.
  12. **Return:**
  13. Vector with values of the orthogonal polynomial (the first place) of order n with argument x, and its first derivatives (the second place).