频率和振幅

Frequency & amplitue

我有一个 sql table 其中包含 2 列:

如何计算最高振幅波的频率? (每个波都是固定频率的)。 谢谢

试试这个

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