fprintf for total sum
Ältere Kommentare anzeigen
N = input("Enter value for N:");
total = 0;
for index=1:N
total = total +(1/index+1/((index+2)*(index+3))) ;
end
fprintf(
Question how to it fprintf the answer, i able to use display but i have not idea how to made it on fprintf?
4 Kommentare
Walter Roberson
am 7 Feb. 2021
Caution: you are not changing i within the loop, so every iteration is going to be adding exactly the same thing to the total.
fushen Lee
am 7 Feb. 2021
Walter Roberson
am 7 Feb. 2021
Rewriting in terms of index looks better.
fushen Lee
am 7 Feb. 2021
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!