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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:25:04+00:00 2026-05-25T02:25:04+00:00

how do I compute the z-score of a array of numbers using PHP? I

  • 0

how do I compute the z-score of a array of numbers using PHP? I need to compute the z-score and then find the percentile (CDF)! what PHP functions can I use? 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-25T02:25:05+00:00Added an answer on May 25, 2026 at 2:25 am

    The following code will give a good approximation of the CDF (Abramowitz & Stegun (1964))

    function normal_pdf($x) {
        return exp(-$x * $x / 4) / sqrt(2 * M_PI);
    }
    
    function normal_cdf($x) {
        $b = array(0.2316419, 0.319381530, -0.356563782, 1.781477937, -1.821255978, 1.330274429);
        $t = 1 / (1 + $b[0] * $x);
        $result = 0;
        for ($i = 1; $i < 6; $i++) {
            $result += $b[$i] * pow($t, $i);
        }
        return 1 - normal_pdf($x) * $result;
    }
    

    This assumes a standard normal distribution. Recall that to standardize, use z = (x - mean) / (standard deviation)

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

Sidebar

Related Questions

Given a 2D numpy array, I need to compute the dot product of every
I'm looking to compute the Moore-Penrose pseudo-inverse of a matrix in C++, can someone
How can I compute the minimum bipartite vertex cover in C#? Is there a
I've got a funky bug that's driving me nuts. Can anyone help me find
I am trying to compute 2^1000 (2 to the power of 1000) using c#.
I'm looking for an elegant way to compute the score of a guess in
In the middle of a c++ code, eclipse, I need to compute the multiply
I got an array of 650 rows. Inserting this using PDO takes between 10-15
I have two functions where I'm adding random numbers to the total value. The
I compute c = a 'OR' b // bitwise OR operation here Now 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.