An array for multiple LHS assignment cannot contain expressions
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Stephen Thompson
le 13 Juin 2018
Commenté : Fangjun Jiang
le 13 Juin 2018
I have array of values (192x2) and I want find the minimal value index (I don't care about the value);
This syntax makes sense to me but is not permitted:
index = zeros (ratio_channels, 1);
for i = 1: ratio_channels
[~, index (i)] = min (compare_onset(i), [], 2)
end
Error: An array for multiple LHS assignment cannot contain expressions.
Running it another way works but doesn't give me what I want (the value but not the index):
for i = 1: ratio_channels
index (i) = min (compare_onset(i), [], 2)
end
1 commentaire
Fangjun Jiang
le 13 Juin 2018
what is the size of compare_onset(i), for example
size(compare_onset(1))
Réponse acceptée
Fangjun Jiang
le 13 Juin 2018
Remove the white space in "index (i)"
[~, index(i)] = min (compare_onset(i), [], 2)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrix Indexing 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!