trying to plot x(n) = 3cos((2*pi*3*n)/25)
2 ビュー (過去 30 日間)
古いコメントを表示
matlab beginner here :( I need to lot an equation for some discrete time signals and the sum of thes signals over a range of n
0 件のコメント
採用された回答
James Tursa
2017 年 4 月 12 日
E.g.,
n = 0:0.01:10;
x = 3*cos((2*pi*3*n)/25);
plot(n,x)
grid on
xlabel('n')
ylabel('x')
title('x = 3*cos((2*pi*3*n)/25)')
0 件のコメント
その他の回答 (1 件)
GianPierre
2023 年 2 月 16 日
a) Señales periódicas. Determine si las siguientes señales son periódicas. En caso afirmativo, especifique su frecuencia fundamental.
i) 𝑥(𝑛) = 2exp[𝑗 ( 𝑛 6 − 𝜋)]
ii) x(𝑛) = cos ( 𝑛 8 ) cos( 𝜋𝑛 8 )
Su Apoyo porfavor
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Printing and Saving についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!