作业帮 > 数学 > 作业

mathematica中怎么画统计函数的图

来源:学生作业帮 编辑:作业帮 分类:数学作业 时间:2024/05/09 20:01:27
mathematica中怎么画统计函数的图
比如正态分布NormalDistribution[0,1]怎么出来?请master指教!
PDF[ NormalDistribution[0,1],x]即是以x为变量的概率密度函数表达式,要画的话用
Plot[ PDF[ NormalDistribution[0,1],x],{x,-3,3}]
即可.
BTW:
CDF[ NormalDistribution[0,1],x]是其分布函数表达式,InverseCDF[ NormalDistribution[0,1],0.95]则可算出其95%的分位点.