Effacer les filtres
Effacer les filtres

What's the difference?

2 vues (au cours des 30 derniers jours)
Francesco
Francesco le 21 Fév 2014
Commenté : Francesco le 21 Fév 2014
out1.Y=cellfun(@(c) bsxfun(@minus, c,c(100,:)), out1.Y,'uni',0);
>> out1.Y
ans =
Columns 1 through 4
[1000x9 double] [1000x9 double] [1000x9 double] [1000x9 double]
Columns 5 through 8
[1000x9 double] [1000x9 double] [1000x9 double] [1000x9 double]
matrice1=bsxfun(@minus,matrice1, matrice1(100,:)); %%
where matrice1 is the 1000x9 double. What's the difference between this two lines of code? I think there is no difference. Is ir right? Is it the same thing? I would like to do the same thing but the line command is different because in the first code I work with cell array and in the second code I work with simply array.

Réponse acceptée

Walter Roberson
Walter Roberson le 21 Fév 2014
The first line goes through and does the task for all cell array members in out1.Y and the second one only does a single numeric array.
The @(c) is creating an anonymous function for cellfun to act on. You can see that the anonymous function's body is structurally the same as the second line, so the logic of the second one is being applied repeatedly in the first one.
  1 commentaire
Francesco
Francesco le 21 Fév 2014
Thanks!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by