How to compare spec limit

4 ビュー (過去 30 日間)
Kanakaiah Jakkula
Kanakaiah Jakkula 2018 年 3 月 13 日
コメント済み: KL 2018 年 3 月 13 日
Hi, Spec table: UL: upper limit, LL: Lower Limit
UL LL
V1 0.36 0.66
V2 30 50
V3 60 110
Actual:
V1 0.16
V2 3
V3 130
I want compare actual with spec limit,
1. If actual value <LL, adjust the actual value to LL
2. If actual value is >UL, adjust the actual value to UL
How to do this,
Many thanks in advance,

回答 (1 件)

KL
KL 2018 年 3 月 13 日
Do it with a logical mask,
V1 = 0.16;
V1_LL = 0.36;
V1_UL = 0.66;
V1(V1<V1_LL) = V1_LL;
V1(V1>V1_UL) = V1_UL;
  2 件のコメント
Kanakaiah Jakkula
Kanakaiah Jakkula 2018 年 3 月 13 日
Sir,
If actual value is between LL & UL, then keep the acual value unchange.
Do I need to compare each variable one by one?
KL
KL 2018 年 3 月 13 日
This should work even if V1 is a vector. As long as you have the same limits,
V1 = [0.36 0.46 0.56];
%and the same as above should work.
the values that are within the liimits will remain the same, that's the point, right?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by