How to check upper and lower limits
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Ameer Hamza
am 26 Mai 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 Kommentare
Siehe auch
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!