C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
LogNormalDistribution.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
4
6{
9 {
12 [DataMember(Order = 20)]
13 [GreaterThan(Double.MinValue)]
14 [LessThan(Double.MaxValue)]
15 public double location { get; set; }
16
20 [DataMember(Order = 21)]
21 [GreaterThan(0)]
22 public double scale { get; set; }
23 }
24}
Abstract representation of a distribution, used for parametric loss sets.
Describes a LogNormal Continuous Distribution.
double location
The location parameter is a real number whose natural logarithm is equal to the mean the associated n...
double scale
The scale parameter is a real number, greater than zero, whose natural logarithm is equal to the stan...
Represents any distribution that is continuous. With a continuous probability distribution,...