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
Problem Comments
-
2 Comments
Ryan Vande Water
on 9 Dec 2013
test suite is correct, but the problem statement is incorrect. Upper limit should be mean PLUS 3 stdev, and lower limit should be minus 3 stdev.
Mehmet OZC
on 9 Dec 2013
thanks for the warning. I have corrected the problem statement.
Solution Comments
Show commentsProblem Recent Solvers40
Suggested Problems
-
Return a list sorted by number of occurrences
2773 Solvers
-
Omit columns averages from a matrix
584 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1069 Solvers
-
805 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
547 Solvers
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!