how can i generate 2.4 ghZ sine wave code in matlab using m file

this is to be generated in matlab code

2 comentarios

Jan
Jan el 23 de Ag. de 2012
Editada: Jan el 23 de Ag. de 2012
Please use meaningful tags, because they are used to sort the question into categories.
What exactly is a "2.4GHz sine wave code"? E.g. [0,1,0,-1,0,1,0,-1] could be a 2.4GHz sine wave also, when you define the sampling frequency accordingly.

Iniciar sesión para comentar.

 Respuesta aceptada

Jan's comments are appropriate here. Are you simply asking how to create a 2.4 gigahertz sine wave?
dt = 1e-11;
t = 0:dt:(1000*dt);
x = cos(2*pi*2.4e9*t);

Más respuestas (0)

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Preguntada:

el 23 de Ag. de 2012

Community Treasure Hunt

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

Start Hunting!

Translated by