Filter löschen
Filter löschen

Hi! Can anybody help me with my code?

1 Ansicht (letzte 30 Tage)
Matty
Matty am 14 Okt. 2022
Bearbeitet: Image Analyst am 14 Okt. 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."

Akzeptierte Antwort

Image Analyst
Image Analyst am 14 Okt. 2022
Bearbeitet: Image Analyst am 14 Okt. 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:

Weitere Antworten (1)

KSSV
KSSV am 14 Okt. 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))

Kategorien

Mehr zu Encryption / Cryptography finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by