Plese help me. Matlab 'while' loop. A set of data is given..?

조회 수: 1 (최근 30일)
J K
J K 2013년 4월 27일
Now I calculate the value of F from equation. From the F that I determined, I need to find the diameter from set of data.
THe method is like this. If my F value is smaller than the value of F from the data, then I choose the corresponding diameter.
For example. The value of F that I calculated is 11. The value of F from the data is 8, 10, 12, 14, 16. The first value is 8, final value is 16, and its corresponding diameter is 1,2,3,4,5.
11 is bigger than 8, the first value of the data, hence we move to the next F on the data. Again, 11 is bigger 10, we move to the next F.
But 11 is less than 12, the iteration is stop. We need not look further. We take the diameter of 12, which is 3.
You get the idea.
And for the set of data. Here's the code. The while (Fa==0) function is the condition that I apply in order to perform this question.
while Fa==0
load data.dat;
diameter=data(:,1);
F=data(:,2);
I'm stuck at that.
Please help me

답변 (1개)

bym
bym 2013년 4월 27일
편집: bym 2013년 4월 27일
x =[ 8, 10, 12, 14, 16]
find(x>=11,1)
ans =
3
edit-----------------------------
x = 8 10 12 14 16
d = 3 5 7 9 10
d(find(x>=11,1))
ans =
7
  댓글 수: 3
J K
J K 2013년 4월 27일
This is not what I want.
The 1,2,3,4,5 is the diameter. Not the sequence of the F value.
Let say the diameter of F from the data is 3,5,7,9,10.
How to write the code?
bym
bym 2013년 4월 27일
see edited answer

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

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by