Summation Using For Loop
Mostra commenti meno recenti
I am having a hard time solving the following problem:

Here is what I have (for n=10) and I cannot for the life of me get the correct output, which should be 3.14 with a bunch of numbers after it.
clc,clear
format long
ESpi=0;
for k=0:10
ESpi=ESpi+[(-1)^k/(2*k+1)^3];
end
ESpi
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!