フィルターのクリア

Ploting a graph with if else statement

2 ビュー (過去 30 日間)
Ron
Ron 2018 年 9 月 30 日
コメント済み: jonas 2018 年 9 月 30 日
I am trying to plot this graph
fs=100000000 % samples per second
dt = 1/fs % seconds per sample
StopTime = 5E-6 % seconds
Fc = 5E6; % hertz
for t = (0:dt:StopTime) % seconds
if t<1E-6
y = 2*sin(2*pi*Fc*t)
else
y=0
end
end
plot (t,y) % Plot the signal versus time
The output of y is exactly what I need but I am unable to plot the graph of the y output with respect to time.
Thank you,

採用された回答

jonas
jonas 2018 年 9 月 30 日
編集済み: jonas 2018 年 9 月 30 日

Try this instead, no for loop needed

fs = 100000000                
dt = 1/fs                  
StopTime = 5E-6             
Fc = 5E6;                   
t = 0:dt:StopTime
y = nan(size(t))
y(t<1E-6) = 2*sin(2*pi*Fc*t(t<1E-6))
y(~(t<1E-6)) = 0
plot(t,y)              
  2 件のコメント
Ron
Ron 2018 年 9 月 30 日
Thank You this works!!
jonas
jonas 2018 年 9 月 30 日
Happy to help! Don't forget to accept the answer please!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraph and Network Algorithms についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by