Top "Normal-distribution" questions

The normal distribution is an assumption of many parametric statistical tests, and is typically associated with a Gaussian distribution, often with mean=0 and standard deviation=1. The "bell curve" is the visual, intuitive model for this distribution.

Draw Normal Distribution Graph of a Sample in Matlab

I have 100 sampled numbers, and I need to draw the normal distribution curve of them in matlab. The mean and …

matlab normal-distribution
Calculating confidence intervals for a non-normal distribution

First, I should specify that my knowledge of statistics is fairly limited, so please forgive me if my question seems …

matlab normal-distribution confidence-interval
Random Numbers with Gaussian and Uniform Distributions in matlab

I want generate a number in Gaussian and Uniform distributions in matlab. I know this function randi and rand() but …

matlab gaussian normal-distribution uniform-distribution
How to use the function curve in [R] to graph a normal curve?

I'm trying to make a histogram in [R], and the normal curve that describes the histogram as follows: w<…

r histogram normal-distribution
Ellipse around the data in MATLAB

I would like to reproduce the following figure in MATLAB: There are two classes of points with X and Y …

matlab plot ellipse normal-distribution standard-deviation
How to create a normal distribution in pytorch

I want to create a random normal distribution in pytorch and mean and std are 4, 0.5 respectively. I didn't find a …

python statistics pytorch linear-algebra normal-distribution
How to get a normal distribution within a range in numpy?

In machine learning task. We should get a group of random w.r.t normal distribution with bound. We can …

python numpy random machine-learning normal-distribution
How to use boost normal distribution classes?

I'm trying to use boost::normal_distribution in order to generate a normal distribution with mean 0 and sigma 1. The following …

c++ boost statistics normal-distribution
Transforming data to normality. What is the best function for a given case?

Is there a function or a package that allows to look for the best (or one of the best) variable …

r statistics normal-distribution
Using the gaussian probability density function in C++

First, is this the correct C++ representation of the pdf gaussian function ? float pdf_gaussian = ( 1 / ( s * sqrt(2*M_PI) ) ) * exp( …

c++ distribution probability gaussian normal-distribution