HOW I COULD DRAW THIS FUNCTION
Ältere Kommentare anzeigen
Akzeptierte Antwort
Weitere Antworten (3)
madhan ravi
am 7 Dez. 2018
Bearbeitet: madhan ravi
am 7 Dez. 2018
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 Kommentare
madhan ravi
am 7 Dez. 2018
Bearbeitet: madhan ravi
am 7 Dez. 2018
Anytime :) , read more about cumsum() and linspace()
HADIMARGO
am 8 Dez. 2018
0 Stimmen
1 Kommentar
Walter Roberson
am 8 Dez. 2018
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
am 8 Dez. 2018
0 Stimmen
1 Kommentar
Walter Roberson
am 8 Dez. 2018
Yes, we could, but it is your homework.
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

