Frequency & amplitue

孤人 提交于 2019-12-12 07:03:02

问题


I have a sql table which contains 2 columns:

How to calculate the frequency of the highest amplitude wave ? (Each wave is of fixed frequency). Thank you


回答1:


Try this

select 1/Time as frequency from <table> order by amplitude desc limit 1



来源:https://stackoverflow.com/questions/32948673/frequency-amplitue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!