create function that performs the following computation
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
S=N = 1+1/2+1/3+1/4+.........1/N
Σ
K =1
1 Commento
Anusha Sridharan
il 27 Dic 2018
[Answers Dev] Restored Edits
Risposte (1)
KALYAN ACHARJYA
il 3 Ott 2018
function sum_result=sum1(n)
sum1=0;
for i=1:n
sum1=sum1+1/n;
end
end
Same can be done by using while loop also. It someone using indexing, it would be better.\
Learn Matlab by doing
Questa domanda è chiusa.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!