Why does ControlChart uses standard error
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Samay Sagar
le 27 Fév 2025
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 commentaires
Voir également
Catégories
En savoir plus sur Particle Swarm dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!