MATLAB cannot call or index into a temporary array in for loop
Afficher commentaires plus anciens
Hello Friends,
Here is my code:
M = {'a', 'b', 'c'};
for i = length(M)
M(i) = M(i)(M(i)~=0);
end
In other words, I am trying to get for each vector 'a', 'b', and 'c' the following in for loop:
a = a(a~=0);
b = b(b~=0);
c = c(c~=0);
I get the following error: "cannot call or index into a temporary array"
I will appreciate any advice.
1 commentaire
Walter Roberson
le 17 Juil 2018
Please do not close a Question that has an Answer.
Réponses (2)
Azzi Abdelmalek
le 17 Mai 2016
I don't know what you want, your example is not appropriate, comparing letters with 0!
A=[1 2 0 5 0 7]
B=A(A~=0)
1 commentaire
hello_world
le 17 Mai 2016
Modifié(e) : hello_world
le 17 Mai 2016
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!