Effacer les filtres
Effacer les filtres

can I avoid for loop?

3 vues (au cours des 30 derniers jours)
Arkadiusz
Arkadiusz le 3 Juin 2014
can I avoid this two for loops here?:
f=zeros(size(L,2),20000,10000);
for t=1:10000
for ii=1:20000
f(:,ii,t) = normcdf(L',m(ii,t),s(ii,t));
end
end
where vector L and arrays m and s are defined?
thanks!

Réponses (1)

Roger Wohlwend
Roger Wohlwend le 3 Juin 2014
No, it is not possible to avoid the two loops.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by