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

this is to be generated in matlab code

2 commentaires

Jan
Jan le 23 Août 2012
Modifié(e) : Jan le 23 Août 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.

Connectez-vous pour commenter.

 Réponse acceptée

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);

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Centre d'aide et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by