How to avoid for loop, when using ecdf for a matrix?

2 vues (au cours des 30 derniers jours)
ARGY B
ARGY B le 21 Août 2019
Commenté : ARGY B le 21 Août 2019
Is there a smarter way to create a matrix fx and a matrix x without using the for loop?
for i=1:4
[fx(:,i) x(:,i)]= ecdf(A(index(i),:));
end
A : a matrix (size 100000x10000)
and index is
index =
7307
21917
40179
58441
I just want the four ecdf results for only the four rows I chose (using the variable named index).
For example the following does not work:
[fx x]= ecdf(A(index,:));

Réponse acceptée

the cyclist
the cyclist le 21 Août 2019
Modifié(e) : the cyclist le 21 Août 2019
No. Inside the code for ecdf.m, you can see the line that explicitly creates an error message if the input is not a vector. I won't post the actual code, but you can do
type ecdf.m
to see for yourself. (The line is near the top of the file, and commented.)
If you wanted to, I suppose you could create your own "parallelized" version of ecdf (by copying and editing ecdf), in which you loop through your matrix internally within your new function. But that has its own inelegancies.
  1 commentaire
ARGY B
ARGY B le 21 Août 2019
You are right. I checked it out.
Thank you

Connectez-vous pour commenter.

Plus de réponses (0)

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