フィルターのクリア

How can I represent this equation on MATLAB

1 回表示 (過去 30 日間)
Ibrahim swidan
Ibrahim swidan 2022 年 4 月 28 日
回答済み: KSSV 2022 年 4 月 28 日
How can I represent this equation on MATLAB
𝑥(𝑡) = 7 𝑐𝑜𝑠 (3𝜋𝑡) 𝑤ℎ𝑒𝑟𝑒 0≤𝑡≤4

採用された回答

KSSV
KSSV 2022 年 4 月 28 日
Extend the example to your case.
n = 100 ;
t = linspace(0,4,n) ;
x = 2*sin(3*pi*t) ;
plot(t,x)

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by