-1

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

Walid
  • 187
  • 1
  • 3
  • 11

1 Answers1

-1

Try this

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

Chris Lear
  • 6,592
  • 1
  • 18
  • 26
  • 1
    This gives a number, which is almost certainly wrong. The time shown is periodic (1.64E-08 step) which means that the data represents a time series. – MSalters Dec 11 '15 at 16:06