Problem 2039. Homemade: Control Charts

This problem is a simple version of control charts in statistics. Intput consists from 30 or more observations.

  • Upper limit = mean(input) + 3 * std(input)
  • Lower limit = mean(input) - 3 * std(input)

If all of the observations are between upper limit and lower limit then return true.

Solution Stats

50.57% Correct | 49.43% Incorrect
Last Solution submitted on Oct 12, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers39

Suggested Problems

More from this Author92

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!