How to check upper and lower limits
2 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Ameer Hamza
2018 年 5 月 26 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!