Hi,
Does any one knows how matlab computes the default bandwidth in the function ksdensity?
Thank you very much,

Antworten (3)

FK
FK am 22 Jan. 2022

2 Stimmen

The 'ksdensity' function uses "Silverman's rule" as given in the post of Ghada. The difference between the calculations of Alexandra and the calculations done in Matlab is caused by a different estimation of the the standard deviation. Instead of estimating it by it is done by applying a more robust estimator with (see this Wikipedia article for further information).
With m=[1,3,2,5] you can derive with Silverman's rule that the default bandwith is given by .

2 Kommentare

Maximiliano Barbosa
Maximiliano Barbosa am 4 Okt. 2022
thank you, actually I was study how to obtain the default bandwith too
Thomas
Thomas am 19 Sep. 2024
Hi FK, I can reproduce the results if the MAD is > 0. If it is zero, MATLAB seems to use something else. Any idea what that could be?

Melden Sie sich an, um zu kommentieren.

Ghada Saleh
Ghada Saleh am 7 Aug. 2015

1 Stimme

Hello Alexandra,
In MATLAB, the default bandwidth in 'ksdensity' function is calculated using the following formula:
BandWidth = sig * (4/(3*N))^(1/5);
where 'sig' is an estimated value of the standard deviation of the samples.
I hope this helps,
Ghada

1 Kommentar

Alexandra
Alexandra am 14 Mär. 2016
I have used this formula to test the calculations of the bandwidth and I don't think it is correct.
Take a simple example: m=[1,3,2,5] Then from [a,b,c]=ksdensity(m,m,'function','cdf') c=1.1901 and sig*(4/(3*4))^(1/5)= 1.3709 So they don't yield the same answers.

Melden Sie sich an, um zu kommentieren.

Mohammad Khatamirad
Mohammad Khatamirad am 4 Dez. 2017

0 Stimmen

you can try this: [f, xi, bw] = ksdensity(X); bw = 'gives you the default bandwidth'

Tags

Gefragt:

am 5 Aug. 2015

Kommentiert:

am 19 Sep. 2024

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by