How to Calculate the Square Root of a Float in C# .. Like Core.Sqrt in XNA

link|improve this question

Use powerful magic - 0x5f3759df – jball Dec 3 '10 at 21:18
That magic is the inverse square-root. But similar magic exists for sqrt. And this loses precision. – CodeInChaos Dec 3 '10 at 21:22
@CodeInChaos - the second code sample in the article has an implementation for sqrt: "Note that the only real difference is in the return value – instead of returning y, return number*y as the square root" – jball Dec 3 '10 at 21:26
@CodeInChaos Does that mean I am to use "(float)Math.Sqrt(inputFloat)" yes? – Chris Dec 3 '10 at 21:26
1  
yes. What jball posted in mainly a cool curiosity and only useful if performance is much more important than precision. First I'd use simple built in stuff and only switch to complicated solutions if performance really requires it, and profiling shows that the change actually matters. – CodeInChaos Dec 3 '10 at 21:29
show 1 more comment
feedback

2 Answers

up vote 8 down vote accepted

Calculate it for double and then cast back to float. May be a bit slow, but should work.

(float)Math.Sqrt(inputFloat)
link|improve this answer
wont it loose precision? – Chris Dec 3 '10 at 21:14
I've always hoped that somehow .Net would optimize this to be an all-float (all 32-bit) operation behind the scenes. Does anyone know if this gets optimized? – Detmar Dec 3 '10 at 21:15
@Chris, the precision will be the same as the input. The calculation is done using doubles. – Jackson Pope Dec 3 '10 at 21:15
1  
@Chris: no, there's a well-known theorem of floating point analysis that guarantees that this will give you the correct result. – Stephen Canon Dec 3 '10 at 21:16
2  
Since double has a much higher precision than float the loss will be very small or non existent. By using floats you already said you don't care much about precision. – CodeInChaos Dec 3 '10 at 21:19
show 2 more comments
feedback

var result = Math.Sqrt((double)value);

link|improve this answer
1  
float and double calculate differently no? – Chris Dec 3 '10 at 21:13
2  
@Chris - The Math.Sqrt method takes a double and returns a double. That is why I casted the parameter as a double. – Randy Minder Dec 3 '10 at 21:19
I see that. But I am talking about floats. Thanks anyway – Chris Dec 3 '10 at 21:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.