" is scalar and hence taking it as "r", but that shouldn't matter for this question. Also please initialize r, k before attemting to run the code. Here is the sample code:sum with odd n+k
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ladan Avazpour
el 4 de Feb. de 2019
Respondida: Harshit Jain
el 8 de Feb. de 2019
I have a question about how to write a code for this kind of summation. k is predetrmined and my problem is about how to set (n+k odd):
Thank you in advance for your help...
0 comentarios
Respuesta aceptada
Harshit Jain
el 8 de Feb. de 2019
I am assuming that "
" is scalar and hence taking it as "r", but that shouldn't matter for this question. Also please initialize r, k before attemting to run the code. Here is the sample code:
" is scalar and hence taking it as "r", but that shouldn't matter for this question. Also please initialize r, k before attemting to run the code. Here is the sample code:sum = 0;
for n = 0:k-1
if mod(k+n, 2) == 1
sum = sum + (2*n+1)*r;
end
end
Note: This is not an optimized code and you may write a more optimized implementation.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with Optimization Toolbox 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!