trying to plot x(n) = 3cos((2*pi*3*n)/25)
조회 수: 3 (최근 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!