Input value and compare to values in an array
이전 댓글 표시
clc, clear, clf
M1=input('What is the Mach number? ');
Mach=[1.050,1.1,1.2,1.3,1.4,1.6,1.8,2,2.5,3,4,5,6,7,8,10];
Maxd=[0.558,1.515,3.944,6.662,9.427,14.652,19.183,22.974,29.797,34.073,38.774,41.118,42,440,43.791,44.429];
So I have this as my code. What I want to do is take an input mach number, find the closest value in the Mach array (rounding down) and then use the corresponding index of the Maxd array for calculations. I'm sure this is simpler than I think it is but I would very much appreciate the help.
채택된 답변
추가 답변 (2개)
madhan ravi
2018년 11월 3일
편집: madhan ravi
2018년 11월 3일
M1=input('What is the Mach number? ');
Mach=[1.050,1.1,1.2,1.3,1.4,1.6,1.8,2,2.5,3,4,5,6,7,8,10];
Maxd=[0.558,1.515,3.944,6.662,9.427,14.652,19.183,22.974,29.797,34.073,38.774,41.118,42,440,43.791,44.429];
[~,index]=min(abs(floor((Mach-(M1))))) %floor rounds down towards negative infinity
Maxd(index) %the value to be used in calculations
command window:
>> COMMUNITY
What is the Mach number? 3
index =
10
ans =
34.0730
댓글 수: 4
Stephan
2018년 11월 3일
I think your code gives wrong result for input = 3
madhan ravi
2018년 11월 3일
check now @stephen
Briana Staheli
2018년 11월 3일
Stephan
2018년 11월 3일
M1=input('What is the Mach number? ');
Mach=[1.050,1.1,1.2,1.3,1.4,1.6,1.8,2,2.5,3,4,5,6,7,8,10];
Maxd=[0.558,1.515,3.944,6.662,9.427,14.652,19.183,22.974,29.797,34.073,38.774,41.118,42,440,43.791,44.429];
Value = Maxd(find((sort([Mach, M1]))==M1,1,'last')-1)
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!