Please write a script for summation of 1/k

5 次查看(过去 30 天)
  2 个评论
KSSV
KSSV 2022-1-24
What is your attempt for the simple home work?
Deleena Rebello
Deleena Rebello 2022-1-24
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

请先登录,再进行评论。

采纳的回答

DGM
DGM 2022-1-24
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 个评论
Deleena Rebello
Deleena Rebello 2022-1-25
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 2022-1-25
Attach your file and an example of how you're calling it.

请先登录,再进行评论。

更多回答(1 个)

Image Analyst
Image Analyst 2022-1-25
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.

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by