trying to plot x(n) = 3cos((2*pi*3*n)/25)

6 次查看(过去 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

采纳的回答

James Tursa
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)')

更多回答(1 个)

GianPierre
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

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by