Hello!
I need help in limiting a variable vector (V) to lower limit (L) and upper limit (U) vectors, i.e. the value of the first variable in V is between L(1) and U(1). How I can do that?
Thanks in advance !

댓글 수: 2

madhan ravi
madhan ravi 2020년 8월 8일
What?
Amal Ashoor
Amal Ashoor 2020년 8월 8일
I have a vector of undetermined varaibles (V). Each varaible have an upper and lower bound. For example, the first component in vector V is x where x value is between 0.1 and 10. So, how can I write this?

댓글을 달려면 로그인하십시오.

 채택된 답변

Fangjun Jiang
Fangjun Jiang 2020년 8월 8일

0 개 추천

>> min([1 2 3],[2 0 5])
ans =
1 0 3
also see max()

댓글 수: 3

Amal Ashoor
Amal Ashoor 2020년 8월 8일
Thank you for your response. However, I want to limit my variable not to find the maximum and minimum values in a vector.
Fangjun Jiang
Fangjun Jiang 2020년 8월 8일
편집: Fangjun Jiang 2020년 8월 8일
%%
L=[1 2 3];
U=[10 20 30];
V=[5 0 50];
NewV=min(max(L,V),U)
NewV =
5 2 30
Make sure there is no conflict between L and U
Amal Ashoor
Amal Ashoor 2020년 8월 8일
Thanks!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

질문:

2020년 8월 8일

댓글:

2020년 8월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by