File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,11 @@ PMCauchyDistribution >> initialize: aNumber1 scale: aNumber2 [
6565 beta := aNumber2
6666]
6767
68+ { #category : #information }
69+ PMCauchyDistribution >> kurtosis [
70+ self shouldNotImplement
71+ ]
72+
6873{ #category : #information }
6974PMCauchyDistribution >> parameters [
7075
@@ -81,6 +86,12 @@ PMCauchyDistribution >> privateInverseDistributionValue: aNumber [
8186 ifFalse: [( ( aNumber - (1 / 2 )) * Float pi) tan * beta + mu]].
8287]
8388
89+ { #category : #information }
90+ PMCauchyDistribution >> skewness [
91+
92+ self shouldNotImplement
93+ ]
94+
8495{ #category : #information }
8596PMCauchyDistribution >> standardDeviation [
8697 " The standard deviation of the receiver is not defined."
@@ -107,5 +118,6 @@ PMCauchyDistribution >> valueAndGradient: aNumber [
107118{ #category : #information }
108119PMCauchyDistribution >> variance [
109120 " The variance of the receiver is not defined."
110- ^ nil
121+
122+ self shouldNotImplement
111123]
You can’t perform that action at this time.
0 commit comments