フィルターのクリア

how to use exp for this problem

2 ビュー (過去 30 日間)
Ashutosh
Ashutosh 2022 年 9 月 21 日
コメント済み: Walter Roberson 2022 年 9 月 21 日
i=1;
Un=3;
sd=1.41;
w=exp(-[[i-Un]^2]/2[sd]^2)

回答 (1 件)

James Tursa
James Tursa 2022 年 9 月 21 日
You need to use the * operator to multiply in the denominator. E.g.,
w=exp(-(i-Un)^2/(2*sd^2))
If i is not a variable defined by you, it will be interpreted as the imaginary number sqrt(-1).
  1 件のコメント
Walter Roberson
Walter Roberson 2022 年 9 月 21 日
I would recommend
w = exp(-(i-Un).^2./(2*sd.^2));
as that would be able to work on non-scalars as well.

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

カテゴリ

Help Center および File ExchangeFourier Analysis and Filtering についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by