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!