Search code examples
frequencywaveamplitude

Frequency & amplitue


I have a sql table which contains 2 columns:

enter image description here

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


Solution

  • Try this

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