Extreme Optimization™: Complexity made simple.

Math and Statistics
Libraries for .NET

  • Home
  • Features
    • Math Library
    • Vector and Matrix Library
    • Statistics Library
    • Performance
    • Usability
  • Documentation
    • Introduction
    • Math Library User's Guide
    • Vector and Matrix Library User's Guide
    • Data Analysis Library User's Guide
    • Statistics Library User's Guide
    • Reference
  • Resources
    • Downloads
    • QuickStart Samples
    • Sample Applications
    • Frequently Asked Questions
    • Technical Support
  • Order
  • Company
    • About us
    • Testimonials
    • Customers
    • Press Releases
    • Careers
    • Partners
    • Contact us
Introduction
Deployment Guide
Nuget packages
Configuration
Using Parallelism
Expand Mathematics Library User's GuideMathematics Library User's Guide
Expand Vector and Matrix Library User's GuideVector and Matrix Library User's Guide
Expand Data Analysis Library User's GuideData Analysis Library User's Guide
Expand Statistics Library User's GuideStatistics Library User's Guide
Expand Data Access Library User's GuideData Access Library User's Guide
Expand ReferenceReference

Skip Navigation LinksHome»Documentation»Statistics Library User's Guide»Continuous Distributions»Log-Logistic Distribution

Log-Logistic Distribution

Extreme Optimization Numerical Libraries for .NET Professional

The log-logistic distribution can be used to model growth where the growth rate starts high and decreases over time. For example, the mortality rate from cancer after diagnosis.

The log-logistic distribution has a scale and a shape parameter. The probability density function is:

Log LogisticPDF

The logistic distribution is implemented by the LogisticDistribution class. It has one constructor that takes two argument. The first argument is the location parameter, and corresponds to the mode of the probability density function. The second argument is the scale parameter.

The following constructs the same logistic distribution with location parameter 6.8 and scale parameter 4.1:

C#
VB
C++
F#
Copy
var logistic = new LogisticDistribution(6.8, 4.1);
Dim logistic = New LogisticDistribution(6.8, 4.1)

No code example is currently available or this language may not be supported.

let logistic = LogisticDistribution(6.8, 4.1)

The LogisticDistribution class has two specific properties, LocationParameter and ScaleParameter, which return the location parameter (mode) and scale parameter of the distribution.

LogisticDistribution has one static (Shared in Visual Basic) method, Sample, which generates a random sample using a user-supplied uniform random number generator. The second and third parameters are the location and scale parameters of the distribution.

C#
VB
C++
F#
Copy
var random = new MersenneTwister();
double sample = LogisticDistribution.Sample(random, 6.8, 4.1);
Dim random = New MersenneTwister()
Dim sample = LogisticDistribution.Sample(random, 6.8, 4.1)

No code example is currently available or this language may not be supported.

let random = MersenneTwister()
let sample = LogisticDistribution.Sample(random, 6.8, 4.1)

The above example uses the MersenneTwister class to generate uniform random numbers.

For details of the properties and methods common to all continuous distribution classes, see the topic on continuous distributions..

Copyright (c) 2004-2023 ExoAnalytics Inc.

Send comments on this topic to support@extremeoptimization.com

Copyright © 2004-2023, Extreme Optimization. All rights reserved.
Extreme Optimization, Complexity made simple, M#, and M Sharp are trademarks of ExoAnalytics Inc.
Microsoft, Visual C#, Visual Basic, Visual Studio, Visual Studio.NET, and the Optimized for Visual Studio logo
are registered trademarks of Microsoft Corporation.