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 885839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T12:58:25+00:00 2026-05-15T12:58:25+00:00

How can I calculate logarithm in Java ME? There isn’t any method in Java

  • 0

How can I calculate logarithm in Java ME? There isn’t any method in Java ME’s Math class for it, but it is available in the Java SE’s Math class.

  • 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-15T12:58:26+00:00Added an answer on May 15, 2026 at 12:58 pm

    It is suggested how it can be done here.

    Here’s a solution from that site:

    private static double pow(double base, int exp){
        if(exp == 0) return 1;
        double res = base;
        for(;exp > 1; --exp)
            res *= base;
        return res;
    }
    
    public static double log(double x) {
        long l = Double.doubleToLongBits(x);
        long exp = ((0x7ff0000000000000L & l) >> 52) - 1023;
        double man = (0x000fffffffffffffL & l) / (double)0x10000000000000L + 1.0;
        double lnm = 0.0;
        double a = (man - 1) / (man + 1);
        for( int n = 1; n < 7; n += 2) {
            lnm += pow(a, n) / n;
        }
        return 2 * lnm + exp * 0.69314718055994530941723212145818;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any tool available by which one can calculate the size or a
Is there any technique through which I can calculate the heartbeat of a person
Are there any R packages available that have some form of function that can
How can I calculate the logarithm of a BigDecimal? Does anyone know of any
Is there any PHP/GD function that can calculate this: Input: image width, image height
I am uploading files with file_put_contents . Is there any way i can calculate
I can calculate an address Segment:Offset as Segment * 0x10 + Offset . But
How I can calculate packet loss from Flex . Any Idea? Thanks in advance.
Is there a way I can calculate a SHA256 hash in Python 2.4? (I
What is the best method by which I can calculate the minimum balance given

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.