How would I plot a piecewise summation.
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ben Phelps
am 27 Nov. 2020
Kommentiert: Ben Phelps
am 29 Nov. 2020

Would anyone be able to help me to plot this equation in MATLAB?
0 Kommentare
Akzeptierte Antwort
Alan Stevens
am 28 Nov. 2020
Something like this?
tau = 1;
t = 0:0.1:10;
n = ceil(t/tau);
for i = 1:numel(n)
S = 0;
for k = 1:n(i)
S = S + (-1)^k*(t(i) - (k-1)*tau)^k/factorial(k);
end
u(i) = 1 + S;
end
plot(t,u),grid
xlabel('t'),ylabel('u')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!