Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6872237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:54:08+00:00 2026-05-27T03:54:08+00:00

I want to have a fast log1p function for Java. Java has Math.log1p, but

  • 0

I want to have a fast log1p function for Java. Java has Math.log1p, but it is apparently too slow for my needs.

I have found this code for log1p here:

http://golang.org/src/pkg/math/log1p.go

for the GO language.

Is it the same like the one in Java, or is it a faster one? (assuming I translate it to java).
Anyone is aware of some other fast implementation of log1p?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T03:54:09+00:00Added an answer on May 27, 2026 at 3:54 am

    since log1p(x) = Math.log(x+1), finding a natural log fast algorithm is sufficient for what you need.

    Fast Natural Logarithm in Java

    I have found the following approximation here, and there is not much
    information about it except that it is called “Borchardt’s Algorithm”
    and it is from the book “Dead Reconing: Calculating without
    instruments”. The approximation is not very good (some might say very
    bad…), it gets worse the larger the values are. But the approximation
    is also a monotonic, slowly increasing function, which is good enough
    for my use case.

    public static double log(double x) {
    return 6 * (x – 1) / (x + 1 + 4 * (Math.sqrt(x))); }

    This approximation is 11.7 times faster than Math.log().

    See this site. Also, a performance comparison for math libraries in java.

    But probably what you need is to link to c++ compiled stuff, detailed here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very fast web server (IIS6, ASP.NET) that I want to use
I have a Perl-based CGI/Fast CGI web service and want to rate-limit clients by
I have program that runs fast enough. I want to see the number of
I already tried stop(true,true), stop(true) and clearQueue(); but this doesn't work. I have problem
Not sure exactly how to explain this but Imaging you have a table with
i want have an image and i want to set it as a background
want to have a Hyperlink-Button in a gridView in which I can display a
I want to have a select-only ComboBox that provides a list of items for
I want to have a text box that the user can type in that
I want to have a PHP script send a XML formatted string to another

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.