HOW I COULD DRAW THIS FUNCTION

3 ビュー (過去 30 日間)
HADIMARGO
HADIMARGO 2018 年 12 月 7 日
回答済み: HADIMARGO 2018 年 12 月 13 日
IMG_20181203_165117.jpg
  2 件のコメント
madhan ravi
madhan ravi 2018 年 12 月 7 日
upload the code that you tried
HADIMARGO
HADIMARGO 2018 年 12 月 7 日
x=0:1:50;
syms n;
y=((2/pi)*((-1)^n+1)*(sin(pi*x)))/n;
symsum(y,n,1,inf);
figure(1);
plot(x,y)
i should say that i am a beginner.

サインインしてコメントする。

採用された回答

HADIMARGO
HADIMARGO 2018 年 12 月 13 日
final answer by myself!!
x=linspace(-5,5,1000);
s=0;
for n=1:1:10000
p=((-1)^(n+1)*sin(n*pi*x))/n;
s=s+p;
end
f=(2/pi)*s;
plot(x,f)
final.jpg

その他の回答 (3 件)

madhan ravi
madhan ravi 2018 年 12 月 7 日
編集済み: madhan ravi 2018 年 12 月 7 日
Use cumsum() to define the behaviour of the alternating series:
x=linspace(0,50,10000);
n=1:10000;
y=(2/pi).*cumsum((((-1).^n+1).*(sin(pi.*x)))./n);
figure(1);
plot(x,y)
  2 件のコメント
HADIMARGO
HADIMARGO 2018 年 12 月 7 日
編集済み: HADIMARGO 2018 年 12 月 7 日
so tnx madhan ravi. i will send this answer to my teacher. if it correct i will get 1 score of 20 .
madhan ravi
madhan ravi 2018 年 12 月 7 日
編集済み: madhan ravi 2018 年 12 月 7 日
Anytime :) , read more about cumsum() and linspace()

サインインしてコメントする。


HADIMARGO
HADIMARGO 2018 年 12 月 8 日
my teacher say it isnot correct. you should put it in a loop.
  1 件のコメント
Walter Roberson
Walter Roberson 2018 年 12 月 8 日
If you have TheResult = cumsum(SomeVector) then you can recode that in a loop as
TheResult(1) = SomeVector(1);
for LoopVariable = 2 : length(SomeVector)
TheResult(LoopVariable) = TheResult(LoopVariable-1) + SomeVector(LoopVariable);
end
... Approximately.

サインインしてコメントする。


HADIMARGO
HADIMARGO 2018 年 12 月 8 日
can anyone write complete answer with loop?
  1 件のコメント
Walter Roberson
Walter Roberson 2018 年 12 月 8 日
Yes, we could, but it is your homework.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by