how can I calculate L-moment with different data length.
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
for i=1:500
for j=1
b0(j,:,i)=D(j,:,i)/19;
for k=1:18
b1(j,k,i)=(D(j,k,i)*(19-k))/(19*18);
for m= 1:17
b2(j,m,i)=(D(j,m,i)*(19-m)*(19-m-1))/(19*18*17);
for n=1:16
b3(j,n,i)=(D(j,n,i)*(19-n)*(19-n-1)*(19-n-2))/(19*18*17*16);
end
end
end
end
end
1 Kommentar
KSSV
am 19 Mai 2022
What exactly is your question? What is code for? Do you face any error with code?
Antworten (0)
Siehe auch
Kategorien
Mehr zu Time Series finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!