I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
get GPL
COST (GBP)
this unit 0.10
sub units 0.00
+
0

PDF

viewed 2025 times and licensed 86 times
Evaluates the normal probability density function.
Controller: CodeCogs

Interface

C++

PDF

 
doublePDFdoublex
doublem = 0
doubles = 1 )[inline]
This function evaluates the normal probability density function.

There is an error with your graph parameters for PDF with options x=-4:4 m=0 s=1 "Standard Normal Distribution"

Error Message:Function PDF failed. Ensure that: Invalid C++

Example 1

#include <iostream>
#include <codecogs/statistics/distributions/continuous/normal/pdf.h>
 
int main()
{
  std::cout << "normal PDF (2.31, 2, 5) = ";
  std::cout << Stats::Dists::Continuous::Normal::PDF(2.31, 2, 5) << std::endl;
  return 0;
}
Output:
normal PDF (2.31, 2, 5) = 0.0796352

Parameters

xthe value at which to evaluate the function
mthe mean of the distribution
sthe standard deviation of the distribution

Authors

Lucian Bentea (September 2005)
Source Code

Source code is available when you agree to a GP Licence or buy a Commercial Licence.

Not a member, then Register with CodeCogs. Already a Member, then Login.