How to check upper and lower limits

9 vues (au cours des 30 derniers jours)
Kanakaiah Jakkula
Kanakaiah Jakkula le 24 Mai 2018
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

Réponses (1)

Ameer Hamza
Ameer Hamza le 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

Community Treasure Hunt

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

Start Hunting!

Translated by