calculate summation of vectors

1 visualización (últimos 30 días)
Kha Le
Kha Le el 17 de Sept. de 2021
Comentada: Kha Le el 18 de Sept. de 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

Respuesta aceptada

William Rose
William Rose el 17 de Sept. de 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 comentario
Kha Le
Kha Le el 18 de Sept. de 2021
thanks for your hint. I figured it out :)

Iniciar sesión para comentar.

Más respuestas (2)

Hernia Baby
Hernia Baby el 17 de Sept. de 2021
Editada: Hernia Baby el 17 de Sept. de 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 comentarios
Hernia Baby
Hernia Baby el 17 de Sept. de 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 el 17 de Sept. de 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:

Iniciar sesión para comentar.


Image Analyst
Image Analyst el 17 de Sept. de 2021
Hint:
oddTerms = 501 : 2 : N;
evenTerms = 500 : 2 : N;
  1 comentario
Kha Le
Kha Le el 18 de Sept. de 2021
thanks for your hint. I figured it out

Iniciar sesión para comentar.

Categorías

Más información sobre Matched Filter and Ambiguity Function en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by