calculate summation of vectors

1 vue (au cours des 30 derniers jours)
Kha Le
Kha Le le 17 Sep 2021
Commenté : Kha Le le 18 Sep 2021
write a code with no loop that will calculate the following sum:
b = 500 + 501^2 + 502 + 503^2 +...+ (N-1)^2 + N, where N = 1000

Réponse acceptée

William Rose
William Rose le 17 Sep 2021
@Kha Le, This sounds a lot like a homework question. Hints:
Break it into two parts: the sum of the unsquared terms plus the sum of the squared terms.
Read help for linspace.
Read the Matlab help for element-wise power, .^, especially example 1.
Read the Matlab help for sum.
If you still don't know, then show what you have tried that did not work, and show if you got an error message, or you got an answer that you know is the wrong answer, etc.
  1 commentaire
Kha Le
Kha Le le 18 Sep 2021
thanks for your hint. I figured it out :)

Connectez-vous pour commenter.

Plus de réponses (2)

Hernia Baby
Hernia Baby le 17 Sep 2021
Modifié(e) : Hernia Baby le 17 Sep 2021
I'll just write a hint.
Even = 0:2:10
Even = 1×6
0 2 4 6 8 10
Odd = 1:2:10
Odd = 1×5
1 3 5 7 9
Square = (1:10).^2
Square = 1×10
1 4 9 16 25 36 49 64 81 100
Sum = sum(1:10)
Sum = 55
  3 commentaires
Hernia Baby
Hernia Baby le 17 Sep 2021
thx! But I'm wondering if I should answer this question completely because I found this looks like home work...
I will write just hint.
Image Analyst
Image Analyst le 17 Sep 2021
If it wasn't tagged as homework, but you really suspect it is homework, you can give hints. You can ask them if it's their homework, and if they say no, then you can go on and give a full solution. If they say yes, I make sure it's tagged as homework (in case they didn't do it themselves) and I give them this link:

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 17 Sep 2021
Hint:
oddTerms = 501 : 2 : N;
evenTerms = 500 : 2 : N;
  1 commentaire
Kha Le
Kha Le le 18 Sep 2021
thanks for your hint. I figured it out

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by