Please write a script for summation of 1/k

1 view (last 30 days)
  2 Comments
KSSV
KSSV on 24 Jan 2022
What is your attempt for the simple home work?
Deleena Rebello
Deleena Rebello on 24 Jan 2022
N=...;
sum = 0.0;
for k=1:N
sum = sum+1/k;
end
Iam new in this . So need a complete script please.
This is the question

Sign in to comment.

Accepted Answer

DGM
DGM on 24 Jan 2022
I don't see why the code you wrote wouldn't work.
N = 100;
s = 0; % using sum as a name shadows the function sum()
for k = 1:N
s = s + 1/k;
end
s
s = 5.1874
That works, but you can always do it without the loop.
s = sum(1./(1:N))
s = 5.1874
  3 Comments
Deleena Rebello
Deleena Rebello on 25 Jan 2022
It is showing an error
Undefined function or method 'summation' for input arguments of type 'char'.
(summation is my file name) This is the error
DGM
DGM on 25 Jan 2022
Attach your file and an example of how you're calling it.

Sign in to comment.

More Answers (1)

Image Analyst
Image Analyst on 25 Jan 2022
Is summation.m a function or a script? If it's what you posted already, it's a script and should not give any error about inputs since there are no inputs. And it should work, once you rename sum to x, as DGM showed in his answer, which ran it in MATLAB online.
On the other hand, if it's a function the first line will be
function summation(N)
and maybe you're supposed to call it passing in N and maybe all you did was click the green run triangle without assigning N. Again, attach your m-file. Use the paperclip icon.

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!