How to do spectral estimation of a point process
    1 vue (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
I would like to analyse neural firing in the time-frequency domain. I have found that several programs (Chronux, nSTAT) exist for this problem, but they are used for analysis of neural data over multiple trials. I would like to analyse data in which I have only one recording from one particular position. I have found that the spectrum of point process can be expressed as the Fourier transform of its autocovariance function. Can somebody tell me which command should be used for it in Matlab?
0 commentaires
Réponses (2)
  Star Strider
      
      
 le 12 Avr 2023
        4 commentaires
  Star Strider
      
      
 le 12 Avr 2023
				If I remember correctly, that is a Poisson process, so perhaps something like this — 
ISI = poissrnd(rand(1,250)*10)*1E-3;
Fs = 1E3;
figure
pspectrum(ISI, Fs, 'spectrogram')
colormap(turbo)
I have never analysed spike trains, so I don’t know the accepted procedures for analysing them.  
.
Voir également
Catégories
				En savoir plus sur Measurements and Feature Extraction dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



