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

조회 수: 3 (최근 30일)
Dalia Lezzar
Dalia Lezzar 2017년 4월 12일
답변: GianPierre 2023년 2월 16일
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에서 Printing and Saving에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by