Why does ControlChart uses standard error
3 次查看(过去 30 天)
显示 更早的评论
Matlab's control charts plot the upper and lower control limits using standard error, instead of standard deviation.
However, it looks like the usual method is to use standard deviation.
Why does Matlab use standard error and is there a way to use standard deviation instead of standard error to plot the control limits?
0 个评论
回答(1 个)
Samay Sagar
2025-2-27
Hi @Jimmy Zhan
In MATLAB R2024b, you can specify the control limits using the "Limits" input field. You can calculate the standard deviation using "std" function and then assign the control limits as follows:
myControlLimits = [1 0 2]; % specify limits based on standard deviation here
controlchart(X,ChartType=["i","mr"],Width=2,Limits=myControlLimits) % where X is the measurements data
While the MathWorks documentation do not state that standard error is used to estimate control limits of "controlchart", you can use standard deviation to specify the control limits.
For more information about "controlchart" and "std", you can refer the following documentation:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Particle Swarm 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!