How can I write this summation:
where N is simply input by the user

 Risposta accettata

Lalit Dhurve
Lalit Dhurve il 4 Feb 2020

1 voto

Simple !!
function Y=Summation(N)
Y=0;
for n=1:1:N
Y=Y+((n+2)/sqrt(n))+n^3;
end
end
Done !!!

Più risposte (0)

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by