Search:

Type: Posts; User: eros

Search: Search took 0.00 seconds.

  1. Thread: Newton's Method

    by eros
    Replies
    33
    Views
    22,787

    Using Newton's Method, yes i did.

    Using Newton's Method, yes i did.
  2. Thread: Newton's Method

    by eros
    Replies
    33
    Views
    22,787

    This is what i came up with, not the most...

    This is what i came up with, not the most efficient but it works

    double Sqrt(double num)
    {
    return Guess(num/2, num, 0, 256);
    }
    double Guess(double x, double y, int depth, int maxDepth)
    {...
Results 1 to 2 of 2