필터 지우기
필터 지우기

How to find the minimum of an array element, but in a interval?

조회 수: 3 (최근 30일)
I have an array A=[0.5 3 10]
I want x=3.
In general how to extract from an array minimum element in a interval. In this case is between for example between 1 and inf.
  댓글 수: 2
Dyuman Joshi
Dyuman Joshi 2023년 10월 31일
이동: Dyuman Joshi 2023년 11월 2일
Use logical indexing (Find Array Elements That Meet a Condition) to find the values in the given range and then use min.
Dyuman Joshi
Dyuman Joshi 2023년 10월 31일
이동: Dyuman Joshi 2023년 11월 2일
Well.

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

채택된 답변

Beñat Arribas
Beñat Arribas 2023년 10월 31일
I propose you a simple way to do that.
You can filter from the array the numbers that are in the interval first:
A=[0.5 3 10];
A_new = A(>=1 & A<inf)
This way A_new will contain the values A_new=[3, 10]. Then you can use the min() function:
minimum = min(A_new)
Hope it answers your question!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by