From 2 given values find the range from a vector
이전 댓글 표시
for example if i have a vector D=[110 140 160 225 280 315 355 400 450 500] and values Dmin=112 and Dmax=356 (always find the value rounded to the bigger number of the vector). i Want to find Range=[140 160 225 280 315 355 400]
Thank you
답변 (3개)
Azzi Abdelmalek
2016년 8월 8일
편집: Azzi Abdelmalek
2016년 8월 8일
Edit
D=[110 140 160 225 280 315 355 400 450 500]
Dmin=112
Dmax=356
ii1=find(D>=Dmin,1)
ii2=find(D>=Dmax,1)
out=D(ii1:ii2)
댓글 수: 1
Stephen23
2016년 8월 8일
Note that this method will return an empty vector when Dmax is >= max(D). This might be undesired behavior.
D = [110,140,160,225,280,315,355,400,450,500]
Dmin = 112;
Dmax = 356;
idx = Dmin<=D & [true,D(1:end-1)<=Dmax];
out = D(idx);
and the output:
>> out
out =
140 160 225 280 315 355 400
Alexandros Samp
2016년 8월 8일
0 개 추천
댓글 수: 3
My answer works correctly when Dmax is out of range. Did you try it?
Dmin = 109;
Dmax = 501; % out of range
idx = Dmin<=D & [true,D(1:end-1)<=Dmax];
out = D(idx)
and the output:
>> out
out =
110 140 160 225 280 315 355 400 450 500
Alexandros Samp
2016년 8월 8일
@Alexandros Samp: Have you actually tried my answer yet? My answer does exactly what you are requesting. Here, I can show you for the third time that it gives you the correct output:
D = [110,140,160,225,280,315,355,400,450,500]
Dmin = 340;
Dmax = 700;
idx = Dmin<=D & [true,D(1:end-1)<=Dmax];
out = D(idx)
and the output:
>> out
out =
355 400 450 500
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!