how to find standard deviation in six sigma format?
8 次查看(过去 30 天)
显示 更早的评论

0 个评论
回答(1 个)
Cris LaPierre
2023-8-29
编辑:Cris LaPierre
2023-8-29
The function std returns one standard deviation. Multiply by +/-1, +/-2 and +/-3 to get more than that.
Here's a simple example
% generate a distribution
x = linspace(425,745,200);
y = normpdf(x,580,35);
scatter(x,y)
mu = mean(x)
xline(mu,'g--')
sd = std(x)
xline(mu + sd,'m--')
xline(mu - sd,'m--')
xline(mu + 2*sd,'b:')
xline(mu - 2*sd,'b:')
xline(mu + 3*sd,'k-.')
xline(mu - 3*sd,'k-.')
2 个评论
Cris LaPierre
2023-8-30
I can't duplicate the error. Please attach your spreadsheet to your post using the paperclip icon
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Descriptive Statistics and Visualization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!