Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save asubb/cd710adb852a99c8c34c61e9a7d33a12 to your computer and use it in GitHub Desktop.
Save asubb/cd710adb852a99c8c34c61e9a7d33a12 to your computer and use it in GitHub Desktop.
wave-blog/using-jupyter/long.signal.query.types.kt
data class FftSample(
val index: Long,
val binCount: Int,
val samplesCount: Int,
val sampleRate: Float,
val magnitude: List<Double>,
val phase: List<Double>,
val frequency: List<Double>,
val time: Long
)
data class Result(val offset: Long, val value: FftSample)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment