How to check upper and lower limits
5 views (last 30 days)
Show older comments
Hi,
I have below actual data and its spec limits, and I want to check whether the actual data is with in the spec limit or not:
Vactual(Actual values):
v1 -4
v2 2.3
v2 11
Vspecs:
UupperLimit LowerLimit
v1 -3.0 5
v2 2.0 3.5
v3 4.5 8.0
If the actual value <lower limit, then the actual value will become the lower limit value, and if it is higher than the upper limit then the actual value will become the upper limit.
My desired output is:
v1 -3
v2 2.3
v2 8
0 Comments
Answers (1)
Ameer Hamza
on 26 May 2018
Try this
v = [-4;
2.3;
11];
vLow = [-3;
2;
4.5];
vHigh = [5;
3.5;
8];
v(v<vLow) = vLow(v<vLow);
v(v>vHigh) = vHigh(v>vHigh);
v =
-3.0000
2.3000
8.0000
0 Comments
See Also
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!