Generating An Exponential Function

7 ビュー (過去 30 日間)
cikalekli
cikalekli 2021 年 11 月 23 日
コメント済み: Dyuman Joshi 2021 年 11 月 24 日
I am trying to generate an exponential function which grows with factor 0.5
between -20 < t < 20.
Did I find it correct? I was not sure so that is why I just wanted to ask here.
Here is my code which I wrote:
t = -20 : 0.5 : 20;
unit=zeros(size(t));
unit(11:end) = 1;
expf = exp(0.5*t);
expunit = expf.*unit;
stem(t,expunit, '- b',...
'LineWidth',2);
  1 件のコメント
Dyuman Joshi
Dyuman Joshi 2021 年 11 月 24 日
factor of 5 how exactly?

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeInterpolation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by