Hi! Can anybody help me with my code?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Matty
le 14 Oct 2022
Modifié(e) : Image Analyst
le 14 Oct 2022
mass_AnPoll = 0;
for i = 1:5
mass_AnPoll = mass_AnPoll + mer(1:i);
end
Error Message in Code: "Arrays have incompatible sizes for this operation."
0 commentaires
Réponse acceptée
Image Analyst
le 14 Oct 2022
Modifié(e) : Image Analyst
le 14 Oct 2022
size(mass_AnPoll)
size(mer)
Perhaps you want to append the elements
mass_AnPoll = 0;
for i = 1:5
mass_AnPoll = [mass_AnPoll, mer(1:i)]; % or [mass_AnPoll; mer(1:i)]
end
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:
0 commentaires
Plus de réponses (1)
KSSV
le 14 Oct 2022
mass_AnPoll = 0;
for i = 1:5
mass_AnPoll = mass_AnPoll + mer(1,i); % mer(1,i) this should be a single number of you index
end
You can simply also use:
mass_AnPoll = sum(mer(1,1:5))
0 commentaires
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!