Optimized pow() approximation for Java and C / C++
I have already written about approximations of e^x, log(x) and pow(a, b) in my post Optimized Exponential Functions for Java. Now I have more In particular, the pow() function is now even faster, simpler, and more accurate. Without further ado, I proudly give you the brand new approximation:
Approximation of pow() in Java
public static double [...]
Javadoc Search Engine Updated
The Javadoc Search Engine now searches JDK 7 too:
Go here: javadoc.ankerl.com
It’s still a draft, so the documentation is surely subject to change. You can also use the search directly from here:
happy hacking!
addthis_url = ‘http%3A%2F%2Fmartin.ankerl.com%2F2007%2F08%2F22%2Fjavadoc-search-engine-updated%2F’;
addthis_title = ‘Javadoc+Search+Engine+Updated’;
addthis_pub = ”;
Ajax Dojo Comet Tutorial
Markus Holzmann, an intern at Profactor of my fellow colleague Philipp Hartl, had the opportunity to experiment with Ajax during his job. He wrote a tutorial about how to push events from the server to the client. For example, display popup messages on all browsers at the same time (see screencast in full resolution here):
[...]
Java Developer Kit (JDK) Search Engine
Thanks to Google Co-op I have just created a new search engine that searches the JDK documentation. It is quite convenient because you can use the labels to choose which version you like to see:
http://javadoc.ankerl.com/
Happy googling.
addthis_url = ‘http%3A%2F%2Fmartin.ankerl.com%2F2007%2F07%2F20%2Fjava-developer-kit-jdk-search-engine%2F’;
addthis_title = ‘Java+Developer+Kit+%28JDK%29+Search+Engine’;
addthis_pub = ”;
Exponential Functions: Benchmarks, 8 Times Faster Math.pow()
I have updated the code for the Math.pow() approximation, now it is 11 times faster on my Pentium IV. Read Optimized Exponential Functions for Java for more information. Now I can also give you some benchmarks:
addthis_url = ‘http%3A%2F%2Fmartin.ankerl.com%2F2007%2F02%2F12%2Fexponential-functions-benchmarks-11-times-faster-mathpow%2F’;
addthis_title = ‘Exponential+Functions%3A+Benchmarks%2C+8+Times+Faster+Math.pow%28%29′;
addthis_pub [...]

