How to get occurrence frequency of the signal?
1 次查看(过去 30 天)
显示 更早的评论
Hi Everybody,
I faced difficulty regarding to get the occurrence frequency of my signal. The data are in .xls format and the column which I want to get the frequency is called "s" and I want only get frequency for those greater than 0.2. Time is define in another column. Could you please help me?
Any help would be highly appreciated.
2 个评论
Wayne King
2013-3-22
Can you please clarify, you have time-domain data in one column and the corresponding times in another column (in your spreadsheet).
When you say you only want the frequency for those greater than 0.2, what is the 0.2 (some frequency value), or are you referring to the amplitude of the signal (the value in time)?
回答(1 个)
vipul utsav
2013-3-22
freq=xlsread(filename.xls,A1:A11)
aa=find(freq>0.2)
answer=freq(aa)
in above code column A1:A10 contain freq.you can take any
7 个评论
vipul utsav
2013-3-23
you have need clarification.
whether s4 is a single value... what is s4?....then which data are in your xls file if you read xls file then some data should in xls file.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!