kurtosis
kurtosis(o_waveform) =>n_kurtosis/nil
Description
Calculates the kurtosis of the specified waveform.
Kurtosis is a measurement of whether the data is heavy-tailed or light-tailed relative to a normal distribution.
Datasets with high kurtosis tend to have heavy tails or outliers. Datasets with low kurtosis tend to have light tails or few outliers.
Arguments
Value Returned
Examples
The following example opens simulation results stored in the specified directory.
openResults("/servers/user/distribution.psf")
=> "/servers/user/distribution.psf"
The following example lists the results contained in the results directory.
results()
=> ("tran")
The following example selects the tran results of the results directory.
selectResults('tran)
=> stdobj@0x2a9de759
The following example creates a waveform object for the signal v1net stored in the tran results.
waveform=v("v1net" ?result "tran")
=> srrWave:0x3232c020
The following example calculates the kurtosis value of the specified waveform.
kurtosis(waveform)
=> 1.939457
Return to top