フィルターのクリア

How do i create a "Cut" at origin?

1 回表示 (過去 30 日間)
Augustine Nashwan Aziz Al-Zebary
Augustine Nashwan Aziz Al-Zebary 2021 年 3 月 21 日
Hello!
So i have coded a sine wave that looks like this:
and the code is:
A = 5;
M = 0.8;
w = 1.2;
fi = 30;
t2 = 20;
firad = fi*pi/180;
t = linspace(0,t2,1000);
y = M + A*sin(w*t + firad);
plot(t,y,'r', 'LineWidth', 2);
mnimumy=min(y) - abs(min(y))*0.1;
mximumy=max(y) + abs(max(y))*0.1;
axis([0 t2 mnimumy mximumy]);
grid on;
So i want to create a cut at origin so that the wave will look like this:
where do i start? I tried changing the Miny on axis to 0 but it did not create the lines in between the waves like the picture above.

採用された回答

Stephan
Stephan 2021 年 3 月 21 日
A = 5;
M = 0.8;
w = 1.2;
fi = 30;
t2 = 20;
firad = fi*pi/180;
t = linspace(0,t2,1000);
y = M + A*sin(w.*t + firad);
% set all values y<0 to 0
y(y<0) = 0;
plot(t,y,'r', 'LineWidth', 2);
mnimumy=min(y) - abs(min(y))*0.1;
mximumy=max(y) + abs(max(y))*0.1;
axis([0 t2 mnimumy mximumy]);
grid on;
  1 件のコメント
Augustine Nashwan Aziz Al-Zebary
Augustine Nashwan Aziz Al-Zebary 2021 年 3 月 21 日
編集済み: Augustine Nashwan Aziz Al-Zebary 2021 年 3 月 21 日
Thanks!

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by