gpt4 book ai didi

matlab - MATLAB 的 normpdf 函数如何工作?

转载 作者:行者123 更新时间:2023-12-02 05:39:04 26 4
gpt4 key购买 nike

当尝试使用 MATLAB 命令 normpdf() 绘制平均值 = 0 和标准偏差 = 20 的普通 PDF 时,我得到了奇怪的结果,请参见图片。

alt text

绘制图形的代码如下:

plot(normpdf((-100:0.1:100),0,20))

这个函数的正确使用方法是什么?

最佳答案

当您使用一个参数调用 plot 时,它会在 y 轴上绘制这些数字,并使用这些值的索引号作为 x 轴。如果你想正确缩放 x 轴,你必须首先提供它们。于是……

x = -100:0.1:100;
plot(x,normpdf(x,0,20),'-')

关于matlab - MATLAB 的 normpdf 函数如何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3820240/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com