Skip to content

Commit

Permalink
Features:
Browse files Browse the repository at this point in the history
	- Multi-dimensional Exponential Distribution Phasing (24, 25, 26)
	- Measure Exponential R^1 Scaled Distribution (48, 49, 50)
	- Expressing one Measure Using Another (51, 52, 53)
	- Exponential To R^1 Pareto Distribution (60)


Bug Fixes/Re-organization:

	- Two Sum IID DIfferential Entropy #1 (9)
	- Two Sum IID DIfferential Entropy #2 (13, 14, 15)
	- Exponential Measure Composite R^1 IID (16, 17, 18)
	- Composite Order Statistics Joint Moment (19, 20, 21)
	- Exponential Measure Composite Distribution Rename (22, 23)
	- Phaseout of Univariate Exponential Distribution (27, 28)
	- Eliminate R^1 Exponential Univariate Distribution (46, 47)
	- Gamma To R^1 Exponential Distribution (54, 55, 56)
	- Gamma To Maxwell Boltzmann Distribution (57, 58, 59)


Samples:

	- R^1 Two IID Significant Statistics #1 (1, 2, 3)
	- R^1 Two IID Significant Statistics #2 (4, 5, 6)
	- R^1 Two IID Significant Statistics #3 (7, 8)
	- R^1 Two IID Significant Statistics #4 (10, 11, 12)
	- R^1 Two IID Significant Statistics #5 (16, 17, 18)
	- R^1 Two IID Significant Statistics #6 (19, 20, 21)
	- Exponential Anderson Darling Gap Analysis (29, 30)
	- Exponential Anderson Darling Gap Discriminant (31, 32)
	- Exponential Cramers von Mises Gap Analysis (33, 34)
	- Exponential Cramers von Mises Gap Discriminant (35, 36)
	- Standard Exponential Significance Test (37, 38)
	- Standard Exponential T Test (39, 40)
	- Standard Exponential PIT (41, 42)
	- Standard Exponential T Statistic (43, 44, 45)


IdeaDRIP:
  • Loading branch information
Lakshmik committed Aug 16, 2023
1 parent 6b264e0 commit 0c4eaa9
Show file tree
Hide file tree
Showing 21 changed files with 231 additions and 370 deletions.
41 changes: 41 additions & 0 deletions ReleaseNotes/12_27_2022.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@

Features:

- Multi-dimensional Exponential Distribution Phasing (24, 25, 26)
- Measure Exponential R^1 Scaled Distribution (48, 49, 50)
- Expressing one Measure Using Another (51, 52, 53)
- Exponential To R^1 Pareto Distribution (60)


Bug Fixes/Re-organization:

- Two Sum IID DIfferential Entropy #1 (9)
- Two Sum IID DIfferential Entropy #2 (13, 14, 15)
- Exponential Measure Composite R^1 IID (16, 17, 18)
- Composite Order Statistics Joint Moment (19, 20, 21)
- Exponential Measure Composite Distribution Rename (22, 23)
- Phaseout of Univariate Exponential Distribution (27, 28)
- Eliminate R^1 Exponential Univariate Distribution (46, 47)
- Gamma To R^1 Exponential Distribution (54, 55, 56)
- Gamma To Maxwell Boltzmann Distribution (57, 58, 59)


Samples:

- R^1 Two IID Significant Statistics #1 (1, 2, 3)
- R^1 Two IID Significant Statistics #2 (4, 5, 6)
- R^1 Two IID Significant Statistics #3 (7, 8)
- R^1 Two IID Significant Statistics #4 (10, 11, 12)
- R^1 Two IID Significant Statistics #5 (16, 17, 18)
- R^1 Two IID Significant Statistics #6 (19, 20, 21)
- Exponential Anderson Darling Gap Analysis (29, 30)
- Exponential Anderson Darling Gap Discriminant (31, 32)
- Exponential Cramers von Mises Gap Analysis (33, 34)
- Exponential Cramers von Mises Gap Discriminant (35, 36)
- Standard Exponential Significance Test (37, 38)
- Standard Exponential T Test (39, 40)
- Standard Exponential PIT (41, 42)
- Standard Exponential T Statistic (43, 44, 45)


IdeaDRIP:
Binary file modified ScheduleSheet.xlsx
Binary file not shown.
208 changes: 0 additions & 208 deletions src/main/java/org/drip/measure/continuous/R1UnivariateExponential.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
*/

/**
* <i>CompositeR1OrderStatistics</i> generates Metrics for the Order Statistics for a Composite Set of
* R<sup>1</sup> Exponential Distributions. The References are:
* <i>IIDComposite</i> generates Metrics for a Composite Set of i.i.d. R<sup>1</sup> Exponential
* Distributions. The References are:
*
* <br><br>
* <ul>
Expand Down Expand Up @@ -112,7 +112,7 @@
* @author Lakshmi Krishnamurthy
*/

public class CompositeR1OrderStatistics
public class IIDComposite
{

/**
Expand Down Expand Up @@ -160,7 +160,7 @@ public static final int MinOrderStatistic (
* @throws Exception Thrown if the Inputs are Invalid
*/

public static final double IIDJointMoment (
public static final double OrderStatisticsJointMoment (
final R1RateDistribution r1RateDistribution,
final int variateCount,
final int orderStatistic1,
Expand All @@ -173,7 +173,7 @@ public static final double IIDJointMoment (
)
{
throw new Exception (
"CompositeR1OrderStatistics::IIDJointMoment => Invalid Inputs"
"IIDComposite::OrderStatisticsJointMoment => Invalid Inputs"
);
}

Expand Down
Loading

0 comments on commit 0c4eaa9

Please sign in to comment.