I have data from the accelerometer sensor
and this is an example of my signal
the first step i have divided the data into segment (each segment have 300 values) so in total i have 10 segments.
I need to find the frequency of each segment, which means i would have 10 values (each value represent the frequency of specific segment) .
so far i have used this code
NFFT=size(Acc_TD_Segments{1},1); % NFFT (lenght of segment) and Acc_TD_Segments(Time domain signal)
Fss=30; % the sampling frequency of the input signal
Acc_FD_Signal{nn,1}=fft(Acc_TD_Segments{nn},NFFT)/NFFT; % nn (number of segments which is =10)
if my code is correct what is the next step to find the frequecny of each segment?
if not please could you help me to determine the frequency for each segment!