Several heaviside step functions in a row

4 ビュー (過去 30 日間)
jnovv
jnovv 2015 年 12 月 15 日
回答済み: Walter Roberson 2015 年 12 月 16 日
Hi there,
I am currently doing a simulation where a cell is injected with a train of currents for 2mS at every 22mS (so 2ms of current, 20ms rest) for 5 times.
This is what I have:
syms t
Iapp=(heaviside(20+2-t)-(heaviside(20-t)));
Basically, I need 4 more of this step function next to this first one. I hope my issue is understandable and someone is able to help me!
Thank you!

回答 (1 件)

Walter Roberson
Walter Roberson 2015 年 12 月 16 日
Iapp = sym(0);
for T = 20:20:100
Iapp = Iapp + (heaviside(T+2-t)-(heaviside(T-t)));
end

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by