Clear Filters
Clear Filters

Approximation of e using random points

1 view (last 30 days)
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

Accepted Answer

Rick Rosson
Rick Rosson on 9 Sep 2011
Hi Austin,
I have not tested the following code, so it may not be 100 percent correct, but it should give you the basic idea. I am assuming that you have two variables x and y, each one is a 1000 x 1 array of numbers:
idx = (y < 1./x);
figure;
scatter(x(idx),y(idx),'markerfacecolor','blue');
hold on;
scatter(x(~idx),y(~idx),'markerfacecolor','red');
HTH.
Rick

More Answers (7)

Austin
Austin on 9 Sep 2011
Great! I had to make some slight adjustments to that, but it works. Thank you very much. I was stuck on the idea of using an if loop, but I guess that was unnecessary. However, I have now encountered another issue. I am trying to determine the percentage of points that lie below the curve. I am completely stuck on this. Any ideas?

Rick Rosson
Rick Rosson on 9 Sep 2011
Please try the following:
countBelow = sum(idx);
countTotal = size(x,1);
ratio = countBelow/countTotal;
HTH.
Rick

Austin
Austin on 9 Sep 2011
Thanks! Just curious, would there be a way to solve the initial question using either an if loop or a while loop? I was just so sure that would be the best way to do it, and I am curious if I was on the right path or not.

Rick Rosson
Rick Rosson on 9 Sep 2011
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
Rick Rosson on 9 Sep 2011
BTW, were you able to compute a good value for e using this method? How close to the correct value did you get?

Austin
Austin on 9 Sep 2011
Well, I was able to get a value but it was not incredibly accurate. After running it a few times, the closest value i got was about 0.05 away from the actual value of e. However, I also want plot the approximated value of e vs. the number of iterations. This means I will need to have a loop, so that i can approximate e at each step along the way. Any help on how to do the loop? Thanks so much for your help.

Rick Rosson
Rick Rosson on 9 Sep 2011
Please post a new question on MATLAB Answers with a link to this one for background info.

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!