trying to plot x(n) = 3cos((2*pi*3*n)/25)
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dalia Lezzar
le 12 Avr 2017
Réponse apportée : GianPierre
le 16 Fév 2023
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 commentaires
Réponse acceptée
James Tursa
le 12 Avr 2017
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 commentaires
Plus de réponses (1)
GianPierre
le 16 Fév 2023
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 commentaires
Voir également
Catégories
En savoir plus sur Signal Processing Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!