Approximation of e using random points
이전 댓글 표시
I have plotted one random thousand points on an axis. I have also plotted a line y=1/x. Now I am trying to display the points below the line in blue and the points above the line in orange. I have tried using an if loop but have not been successful. Any ideas how I could do this? Thanks
댓글 수: 1
Walter Roberson
2011년 12월 8일
There is no such thing as an if loop.
채택된 답변
추가 답변 (7개)
Rick Rosson
2011년 9월 9일
Please try the following:
countBelow = sum(idx);
countTotal = size(x,1);
ratio = countBelow/countTotal;
HTH.
Rick
Rick Rosson
2011년 9월 9일
0 개 추천
Yes, you can solve it with either a for loop or a while loop in conjunction with an if statement. So you were on a perfectly valid path. But in MATLAB, it is almost always possible (and usually desirable) to eliminate for loops and while loops, and replace them with what is called vectorized code (which is what the idx = ... line is doing). Some of the benefits of vectorization include:
- Faster execution time
- More readable code
- More compact code
- More expressive code
- A higher level of abstraction
Also, in almost all programming languages, you generally want to avoid using if statements within loops if at all possible.
HTH.
Best,
Rick
Rick Rosson
2011년 9월 9일
0 개 추천
BTW, were you able to compute a good value for e using this method? How close to the correct value did you get?
Rick Rosson
2011년 9월 9일
0 개 추천
Please post a new question on MATLAB Answers with a link to this one for background info.
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!