Sum of a Series, Help!

조회 수: 2 (최근 30일)
Nathan Barnes
Nathan Barnes 2020년 7월 9일
댓글: Rena Berman 2020년 7월 22일
Hi i have had a look around for some help on multiple variables using sum and sigma.
Couldnt quite understand how to apply those examples to my problem.
And I have got to write out this function and be able to plot it on a graph.
Being that n is 1,2 or 3 (on the same graph)
Pn(x) =
  댓글 수: 5
madhan ravi
madhan ravi 2020년 7월 10일
Thank you Stephen!
Rena Berman
Rena Berman 2020년 7월 22일
(Answers Dev) Restored edit

댓글을 달려면 로그인하십시오.

답변 (2개)

David Hill
David Hill 2020년 7월 9일
Not sure exactly what you are asking.
x=0:.1:10;
for n=1:3
S(n,:)=arrayfun(@(i)sum(repmat(-1,1,n+1).^(0:n)./(2*(0:n)+1).*repmat(i,1,n+1).^(2*(0:n)+1)),x);
end
subplot(3,1,1);
plot(x,S(1,:));
subplot(3,1,2);
plot(x,S(2,:));
subplot(3,1,3);
plot(x,S(3,:));
  댓글 수: 3
Nathan Barnes
Nathan Barnes 2020년 7월 9일
It is correct and I appreciate it very much, I'm sorry if I came off as ungreatful.
Rik
Rik 2020년 7월 9일
Then why did you delete it?

댓글을 달려면 로그인하십시오.


Boxn Hen
Boxn Hen 2020년 7월 9일
Hope to help you as follow.Ps:I just use 'for' to sum all seperate results.
function result=SumAndSigma(x,n)
r(1)=0;
for i=0:n
r(i+2)=r(i+1)+((-1)^i/(2*i+1)).*x.^(2*i+1)% There are n+1 elements and the first one is 0.
end
result=r(2:end);
end
And input x and n to the function SumAndSIgma.
%for example:x=3;n=5
x=3;n=5;
result=SumAndSigma(x,n)
data=0:n;
plot(data,result);

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by