Question: Weighted median

On my computer the following command for weighted median calculation

with(Statistics):
n:=60000;
X:=Sample(RandomVariable(Normal(0,1)),n);
w:=<seq(i,i=1..n)>;
Median(X,weights=w);

is worked for n=6000, but don't work for n=60000.

How it is work on another computers ?

Please, check.

Please Wait...