C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
UniformDistribution.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
2
4{
9 {
12 [DataMember(Order = 20)]
13 public double lower { get; set; }
14
17 [DataMember(Order = 21)]
18 public double upper { get; set; }
19 }
20}
Abstract representation of a distribution, used for parametric loss sets.
Describes a Continuous Uniform Distribution, also known as a rectangular distribution,...
double upper
The upper bound of the domain of the uniform distribution. Must be greater than the lower bound....
double lower
The lower bound of the domain of the uniform distribution. Can be any real number.
Represents any distribution that is continuous. With a continuous probability distribution,...