(35S) Statistical Distributions Functions
|
10-26-2015, 08:39 PM
(This post was last modified: 10-28-2015 12:09 AM by Thomas Klemm.)
Post: #6
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
Here's a program for the Student's t-distribution:
Code: T001 LBL T ; Student's t You have to initialize the program with the degrees of freedom: XEQ T ENTER K? 7 R/S To calculate the PDF use the program P: XEQ P ENTER X? 1.6 R/S 0.110665 PDF[StudentTDistribution[7],1.6] To calculate the CDF use the program C: XEQ C ENTER X? 1.5 R/S 0.911351 CDF[StudentTDistribution[7],1.5] For the next program set the accuracy to a reasonable value: 1E-6 STO E To calculate the Inverse CDF use the program I: XEQ I ENTER X? 0.99 R/S 2.997951 HTH Thomas |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 3 Guest(s)