6. Write a MATLAB program to Plot the spectra of the signal x[n]=sin(nπ/3)
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Need code for this program
3 Kommentare
Walter Roberson
am 29 Okt. 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.
Antworten (1)
Drishan Poovaya
am 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
0 Kommentare
Siehe auch
Kategorien
Mehr zu Mathematics and Optimization finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!