Samples in generating a given signal

19 visualizaciones (últimos 30 días)
Ara Liz
Ara Liz el 14 de Jun. de 2021
Respondida: Scott MacKenzie el 14 de Jun. de 2021
We have to generate 128 samples of sinusoid with frequency of 3000 Hz, amplitude of 0.8 and sampling rate is 8000 Hz. The correct codes were:
>> Fs = 8000;
>> t = [0:127]/Fs;
>> y = 0.8*sin(2*pi*3000*t);
>> plot(t,y);
I just want to know why is it 127 and not 128? Thank you so much in advance :)

Respuestas (1)

Scott MacKenzie
Scott MacKenzie el 14 de Jun. de 2021
There are 128 values in the vector [0:127]:
0, 1, 2, 3, ... 126, 127
If the vector was defined using the term 128, as in your question, there would be 129 terms:
0, 1, 2, 3, ... 127, 128

Categorías

Más información sobre Measurements and Feature Extraction en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by