6. Write a MATLAB program to Plot the spectra of the signal x[n]=sin(nπ/3)

4 vues (au cours des 30 derniers jours)
Need code for this program
  3 commentaires
Naveen kumar Myla
Naveen kumar Myla le 29 Oct 2021
Nothing but i need code for this program
Walter Roberson
Walter Roberson le 29 Oct 2021
I would point out that the sooner you start programming the code, the sooner you will have it done. We are not going to provide you with the solution to your homework. If you ask specific questions or show your code and ask about specific errors then we will assist with that.

Connectez-vous pour commenter.

Réponses (1)

Alamanda Ponappa Poovaya
Alamanda Ponappa Poovaya le 1 Nov 2021
The code snippet below should solve your question.
n = 1:0.01:5;
y = sin(n*pi/3);
plot(n,y);
Modify the range of n as required

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Tags

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by