sin wave with difference sampling frequency?
    4 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Mary Jon
 le 29 Déc 2013
  
    
    
    
    
    Modifié(e) : aadharsh parameshwar
 le 31 Jan 2020
            How can generate sine() with 100 ,150,1000,1500 ,sampling frequency ?
0 commentaires
Réponse acceptée
  Wayne King
    
      
 le 29 Déc 2013
        Simply change the increments at which the time vector is sampled.
100 Hz sampling frequency:
Fs = 100;
t = 0:1/Fs:1;
x = cos(2*pi*10*t);
Now change Fs to 150 and so son
Fs = 150;
t = 0:1/Fs:1;
x = cos(2*pi*10*t);
2 commentaires
  aadharsh parameshwar
 le 31 Jan 2020
				
      Modifié(e) : aadharsh parameshwar
 le 31 Jan 2020
  
			in frequency domain sin we integrate to get cos
thats what i thnk... pls forgive me if my answer is wrong...
Plus de réponses (1)
  RAJESHWARI G N
 le 28 Mar 2019
        How to genarate sinusoidal signal with 50hz freq,2 unit magnitude using sampling rate 500hz and total no of points 1024. then compute DFT
0 commentaires
Voir également
Catégories
				En savoir plus sur Bartlett dans Help Center et File Exchange
			
	Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




