How would I plot a piecewise summation.

조회 수: 10 (최근 30일)
Ben Phelps
Ben Phelps 2020년 11월 27일
댓글: Ben Phelps 2020년 11월 29일
Would anyone be able to help me to plot this equation in MATLAB?

채택된 답변

Alan Stevens
Alan Stevens 2020년 11월 28일
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')

추가 답변 (0개)

카테고리

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