C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
NormalDistribution.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
4
6{
9 {
11 [DataMember(Order = 20)]
12 [GreaterThan(Double.MinValue)]
13 [LessThan(Double.MaxValue)]
14 public double mean { get; set; }
15
18 [DataMember(Order = 21)]
19 [GreaterThan(0)]
20 public double stddev { get; set; }
21 }
22}
Abstract representation of a distribution, used for parametric loss sets.
Describes a Normal Continuous Distribution.
double stddev
The standard deviation of the Normal Distribution (any real number greater than zero).
double mean
The mean of the Normal Distribution (any real number).
Represents any distribution that is continuous. With a continuous probability distribution,...