how can I calculate L-moment with different data length.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
KSSV
el 19 de Mayo de 2022
What exactly is your question? What is code for? Do you face any error with code?
Respuestas (0)
Ver también
Categorías
Más información sobre Time Series en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!