Click here to Skip to main content
15,894,460 members
Everything / Frequency Analysis

Frequency Analysis

frequency-analysis

Great Reads

by Steve Hageman
A Python Library to help make properly scaled Fourier Transforms including utility functions

Latest Articles

by Steve Hageman
A Python Library to help make properly scaled Fourier Transforms including utility functions

All Articles

Sort by Score

Frequency Analysis 

13 Apr 2022 by Steve Hageman
A Python Library to help make properly scaled Fourier Transforms including utility functions
1 Jul 2022 by 0x01AA
***Warning*** This is my first java application after a crash course today. Take care, it is a.) inefficient b.) no naming conventions c.) simply fast and dirty But it shows the at least the steps how to build a sine sound. I have also cross...
27 Jun 2022 by 0x01AA
The pragmatic approach ... ... as soon this works one can think about to optimize it (e.g. loops instead of creating 10 Seconds of the same shape, stereo, etc.). You like to play a sinus- sound: Duration : [Sec] SampleFrequency : [Sample...
23 Nov 2017 by Kenneth Haugland
This is quite a complex task you are setting out to do, and you have still not explained in exact detail what you want. So my advice to you is to implement an FFT algorithm that you know works, then try and implement the code you want. If you get stuck you can improve your question. But you...
1 Aug 2017 by kazz199
i am working on a project in which i need to get the fundamental frequncies of the audio input of microphone. I want to get frequency in every 0.1s while audio is input throught microphone. how to do this using c#.net using libraris such as naudio.? i did some research but implementing this...
1 Aug 2017 by RickZeeland
Maybe you can try to contact Christian Woltering, the author of this CodeProject article: Comparison of FFT implementations for .NET[^]
23 Nov 2017 by KotsanisNakos
I want to convert stereo wav into frequency and save them into a txt. The idea is that i have to load the wav, reading it and finally save the frequencies in my computer as a txt. For example 0:00 min 50HZ 0:01 min 57HZ .... 1:10 min 450HZ I...
29 Jan 2019 by Jade12345
people, i m looking for a library i can use in my.net application that can convert a sound file or a microphone feed to notes which i can represent digitally. for example to have someone whistle a tune, my application will transfer it to the library as a stream and the library will return an...
29 Jan 2019 by Richard MacCutchan
www.google.com[^].
7 Mar 2021 by OriginalGriff
Compiling does not mean your code is right! :laugh: Think of the development process as writing an email: compiling successfully means that you wrote the email in the right language - English, rather than German for example - not that the email...
8 Mar 2021 by KarstenK
You need to debug your code step by step. Read some Debug tutorial to start. tip: divide your code into functions and classes to use sample values to easier reproduce some scenarios.
1 Jul 2022 by T1xT
this below, it even plays a 1hz sound clearly; while it shouldn't: import javax.sound.sampled.*; public class soundwithdetails { public static float SAMPLE_RATE = 44100f; public static void sound(int hz, int msecs, double vol) throws...
8 Mar 2021 by Priyanka Somani
Given a integer n and array of integers of size n , if any of the integer has frequency greater than 1, then output "YES" else "NO". Example - n = 80 array = [300385365 542329329 207009966 677383701 499030221 979765969 777791551 857948103...