Recent content by spoonyluv

  1. S

    Difference between centroid and break away/in point

    Hi, I am studying control engineering and we are covering root locus concept right now. My knowledge of this concept is varied..I get some things and others I don't. One thing I don't understand is the difference between centroid and breakaway/in point. So for example for this function...
  2. S

    Is (u(x,t))^2 the Same as u^2(x,t)?

    this is going to sound really dumb, but here is my questions anyways: is (u(x,t))2 the same as u2(x,t)? I say yes, but I am not sure. thanks spoony.
  3. S

    MATLAB Need help with Matlab standard deviation

    Hello, I seriously need some help as I can't figure out what to do here. I am working on coding a vaccination simulation that measures rates of infection for period of 100 days. I have this variable delta, which is the number of days the infection period lasts. Delta is 5, or at least on...
  4. S

    MATLAB Simulating 100-Day Experiments with an Index Case

    Hello, Here is my scenario: I am trying to run a code a 100 times, so I use a for loop statement i=1:100. The 1 to 100 stands for 1 to 100 days. Now I want to see how much randomness my results give and so I want to simulate this whole 100 days thing twice. So I think my code would look...
  5. S

    MATLAB How Can I Store Loop Results in Arrays for Plotting in MATLAB?

    Hey matlabdude, it worked! so thanks! however, now I have a new problem...i was hoping that as the loop continued, bob would retain the original dimensions of S, which is 2,5 (2 rows, 5 columns) . however bob is of the dimension [2, 500]. I am looking into resizing bob, but so far no...
  6. S

    MATLAB How Can I Store Loop Results in Arrays for Plotting in MATLAB?

    Matlabdude, Where would I put the bob = [bob, result_of_this_loop] in my code below? after all the end statement? would I need to declare bob as something in the beginning of the code? Thanks
  7. S

    MATLAB How Can I Store Loop Results in Arrays for Plotting in MATLAB?

    Hello, I am trying to store the results in the form of an array every time the code goes through a loop. This is what my code looks like: for j = 1:100 for i= 1:100 if S(i)==0 if rand < T S(i)= 1; t_inf(i) = j; end...
  8. S

    GRE Math Subject testshould I take it?

    that's what I was initially thinking, but my worry is that what if my scores are not very high...wouldn't that hurt my chances when applying to grad school. let's say some school that doesn't require it now gets the subject scores? wouldn't that count against me?
  9. S

    GRE Math Subject testshould I take it?

    Hello, I graduated 10 yrs ago with a BA in Math from a US liberal arts college. I am looking to go back to do my Masters (preferably in Applied Math) in Math. I am undecided as to whether I should take the GRE Math test. There are some universities whose Math programs I like but they require...
Back
Top