(42S) Chebyshev Polynomial - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Software Libraries (/forum-10.html) +--- Forum: General Software Library (/forum-13.html) +--- Thread: (42S) Chebyshev Polynomial (/thread-8641.html) |
(42S) Chebyshev Polynomial - Eddie W. Shore - 07-07-2017 05:11 AM The trigonometric definition is used to calculate T_n(x): For |x| > 1, cosh (n * acosh x) For |x| ≤ 1, cos (n * acos x) Code:
Examples: T_4(2) (n = 4, x = 2). Result: 97 T_4(0.5) (n = 4, x = 0.5) Result: -0.5 |