Created
April 10, 2020 21:23
-
-
Save asubb/cd710adb852a99c8c34c61e9a7d33a12 to your computer and use it in GitHub Desktop.
wave-blog/using-jupyter/long.signal.query.types.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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