Borrar filtros
Borrar filtros

Generate a Sine Wave in which I can change the sampling rate.

3 visualizaciones (últimos 30 días)
Rory
Rory el 11 de Ag. de 2014
Comentada: Rory el 14 de Ag. de 2014
i wish to generate a basic sine wave and then plot it.
i then wish to take that basic sine wave and change the sampling rate (say from 1 to 10 to 100 to 1000 sampling points).
i do not have simulink. thanks.

Respuesta aceptada

Adriano Bittar
Adriano Bittar el 11 de Ag. de 2014
Editada: Adriano Bittar el 11 de Ag. de 2014
%asks for sample rate
sample_rate = input('Type the sample rate:\n')
%time
t=0:2*pi/sample_rate:2*pi;
%discrete plot
stem(t,sin(t))
  3 comentarios
Rory
Rory el 14 de Ag. de 2014
would you know how to make the plot have an x-axis of 0-7 milliseconds and the y axis to have -30 to +50 millivolts?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Simulink 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