소스 검색

Add "Readme.md"

Hrustalev Iliya Hrustalev 6 달 전
부모
커밋
6114e985e4
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. 16 0
      README.md

+ 16 - 0
README.md

@@ -0,0 +1,16 @@
+## 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).