暂无描述

Hrustalev Iliya Hrustalev 6114e985e4 Add "Readme.md" 6 月之前
Orthogonal Polynomials cf50e14d8a Add test for Hermite Polynomials 6 月之前
Test 3b2edf338b Add functions 6 月之前
bin 3b2edf338b Add functions 6 月之前
googletest @ 3b2edf338b Add functions 6 月之前
modules 3b2edf338b Add functions 6 月之前
CMakeLists.txt 3b2edf338b Add functions 6 月之前
README.md 6114e985e4 Add "Readme.md" 6 月之前

README.md

Orthogonal Polynomials

Description: The OrthPol(KF, n, x) function computes orthogonal polynomials: Chebyshev, Laguerre, Hermite polynomials, and their derivatives using recurrence relations.

Parameters:

  1. KF - parameter specifying the orthogonal polynomial
    • KF = 1 for Chebyshev polynomial of the first kind
    • KF = 2 for Chebyshev polynomial of the second kind
    • KF = 3 for Laguerre polynomial
    • KF = 4 for Hermite polynomial
  2. n - integer order of orthogonal polynomial.
  3. x - argument of orthogonal polynomial.

Return: Vector with values of the orthogonal polynomial (the first place) of order n with argument x, and its first derivatives (the second place).