want algorithm details

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi, how can i take squre root of a number which is 300+ digits long in VC++.
is there any .net class that provide this functionality. I know that
in C i have to implement my own data structure( link list ) but have
anybody exact idea how can i achieve this
 
ahmad said:
hi, how can i take squre root of a number which is 300+ digits long in VC++.
is there any .net class that provide this functionality. I know that
in C i have to implement my own data structure( link list ) but have
anybody exact idea how can i achieve this

There is a method to take square roots manually (I don't recall the
details here but it involves pairing up digits in the number). You may
have to implement that.

/steveA
 
ask in sci.math.num-analysis, also check books such as Numerical Recipies In
C.
 
ahmad said:
hi, how can i take squre root of a number which is 300+ digits long in VC++.
is there any .net class that provide this functionality. I know that
in C i have to implement my own data structure( link list ) but have
anybody exact idea how can i achieve this

www.oonumerics.org should have a suitable arbitrary precision library.

Tom
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top