フィルターのクリア

Asymetric Amplitude

3 ビュー (過去 30 日間)
Filipe
Filipe 2011 年 6 月 29 日
Hi people,
I want to generate a sinusoid with asymmetric amplitude. The positive amplitude must be 1 and the negative amplitude must be 0.5.
How can I do It?
thanks
  1 件のコメント
bym
bym 2011 年 6 月 29 日
what have your tried so far?

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

回答 (2 件)

Paulo Silva
Paulo Silva 2011 年 6 月 29 日
t=0:0.01:10;
f=sin(t);
f(f<0)=f(f<0)/2;
plot(t,f)

Walter Roberson
Walter Roberson 2011 年 6 月 29 日
PosAmp = 1.0;
NegAmp = 0.5;
sinus = PosAmp .* linspace(0,50*pi,500);
sinus(sinus<0) = sinus(sinus<0) .* (NegAmp ./ PosAmp);

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by