The frequency-analysis tag has no wiki summary.
0
votes
0answers
29 views
How to easily implement a frequency shift a 48 KHz iPhone microphone audio sample in small Hz increments in Objective C [closed]
I am in need of a simple an quick way to perform a fixed frequency shift of an iphone microphone audio sample. Actually several frequency shifts at, for example ~1 Hz increments or there abouts. ...
0
votes
1answer
77 views
How to get PCM data from recorded sound for Fourier analysis
I've been working on c++ code that will take in sound and output it's core frequency, like a guitar tuner. I can generate my own randomized sine wave and successfully perform the FFT from a text file ...
0
votes
0answers
139 views
processing + bitWrite + arduino
I am working with an Arduino and Processing with the Arduino library.
I get the error "The function bitWrite(byte, int, int) does not exist.";
it seams that processing + Arduino bitWrite function ...
1
vote
1answer
72 views
Awk: Characters-frequency from one text file?
Given a multilangual .txt files such as:
But where is Esope the holly Bastard
But where is 생 지 옥 이 군
지 옥 이
지 옥
지
我 是 你 的 爸 爸 !
爸 爸 ! ! !
你 不 會 的 !
I counted space-separated words' word-frequency ...
0
votes
3answers
115 views
Awk: Words frequency from one text file, how to ouput into myFile.txt?
Given a .txt files with space separated words such as:
But where is Esope the holly Bastard
But where is
And the Awk function :
cat /pathway/to/your/file.txt | tr ' ' '\n' | sort | uniq -c | awk ...
2
votes
2answers
375 views
Matlab plot log magnitude of chirp
I create a logarithmic chirp exactly as found on the matlab help page.
t = 0:0.001:10; % 10 seconds @ 1kHz sample rate
fo = 10; f1 = 400; % Start at 10Hz, go up to 400Hz
X = ...
0
votes
0answers
27 views
YIN algorithm explanation
Can any of you explain the error reduction steps involved in YIN algorithm after autocorrelation?
The paper mentions following 5 steps after correlation:
Difference function
Cumulative mean ...
0
votes
0answers
116 views
mp3 and m4a frequency analysis
I'm doing some frequency analysis on mp3 files using FMOD's getSpectrum function and other utilities on windows. It was working very well but then I tried to load a file from iTunes which is a .m4a ...
1
vote
0answers
60 views
How to avoid very last assertion (if I understood it properly)
I'm following http://verificationguild.com/modules.php?name=Forums&file=viewtopic&p=5019 to check period of particular signal.
That method works perfectly, but at very end of simulation if ...
0
votes
2answers
325 views
An algorithm to detect a certain frequency? [closed]
Using Goertzel algorithm I am detecting a certain frequency that goes into the iphone microphone (I use buffer samples).
Its working, but it has many strange stability problems when values are ...
6
votes
4answers
217 views
Need an audio analysis library to create real time feedback from audio file?
Real-time is not necessarily required, however I am creating a game for my final year project and I wish to use the power of audio to create dynamic levels based solely on a music track that is ...
-1
votes
1answer
231 views
Get frequency using FFT [closed]
I'm working on a science fair project involving spectral frequency analysis and I have been able to use FFT to come up with amplitude, but I'm trying to find the frequency of each wave in realtime.
1
vote
2answers
841 views
Matlab: Finding dominant frequencies in a frame of audio data
I am pretty new to Matlab and I am trying to write a simple frequency based speech detection algorithm. The end goal is to run the script on a wav file, and have it output start/end times for each ...
1
vote
1answer
76 views
Frequency Analyzing in Python
I am trying to write a python program that takes a file with 14 lines each with three different values--
s01:21-11-2011:s1
s02:17-03-2011:s2
s01:13-05-2011:s2
s03:02-10-2011:s1
-- for example. I ...
2
votes
1answer
94 views
How to recognize if word has no meaning, maybe some impossible syllables?
Initially, I have m arrays of n characters, where each array contains unknown (for me) character of needed word (condition: word has meaning).
For example, m = 4, n = 3: array0 = {'t', 'e', 'c'}, ...
1
vote
1answer
715 views
Given an array of data, extract possible frequencies with fft, how to?
I am fairly new to vibrations and using matalb fft.I am given a set of data (1D array) of length 15000 (not sure if this is relevant) and I am trying to figure out if there is any wave buried in this ...
4
votes
4answers
1k views
How to calculate sound frequency in android?
I want to develop app to calculate Sound frequency in Android. Android Device will take
Sound from microphone (i.e. out side sound) and I have one color background screen in app.
on sound frequency ...
4
votes
1answer
2k views
Frequency shift using FFT in Matlab
I am working on implementing BFSK modulation and demodulation with frequency hopping and I need to test my results using Matlab. The output the I am getting from my BFSK program is an array of sine ...
2
votes
1answer
524 views
How to detect the value for lowest and highest frequency in aurioTouch project [duplicate]
Possible Duplicate:
How to get Frequency from FFT result
I'm investigating aurioTouch2 sample code.
And in draw view fuction one function is always called to compute fft data, so we can ...
6
votes
2answers
454 views
Am I using the Fourier transformation the right way?
I am wondering if I am using Fourier Transformation in MATLAB the right way. I want to have all the average amplitudes for frequencies in a song. For testing purposes I am using a free mp3 download of ...
3
votes
1answer
155 views
bode plot discrepancy
I am plotting the following
Cu4 = tf([1 2], [1 2 6]);
[magCu4 phaseCu4 wout] = bode(Cu4,logspace(-2,7,300));
magCu4 = squeeze(magCu4);
phaseCu4 = squeeze(phaseCu4);
...
3
votes
1answer
388 views
How do I interpret audio encoded binary data?
I have built a little program that encodes binary data into a sound. For example the following binary input:
00101101
will produce a 'sound' like this:
################..S.SS.S################
...
0
votes
1answer
1k views
Background noise removal from audio signals using FFT Python
I am currently doing a project at university where I am distinguishing between different instruments playing notes of the same pitch using python.
I have recorded various notes on different ...
2
votes
1answer
57 views
What should I look for in the analysis of the attached signals?
I'm looking to analyze and compare the following `signals':
(Edit: better renderings here: oscillations good and here: oscillations bad)
What you see are plots of neuron activations from a type ...
2
votes
0answers
201 views
how to compute frequency and detect pitch of a compressed (mp3) audio file? - Android
I'm having a
problem with recording audio using Audiorecord class because the data returned is always zero (the read method does not record audio).
So, I thought of playing a compressed audio and ...
0
votes
1answer
207 views
Am I attempting to use the FFT to correctly identify an input signal?
I'm trying to implement an FFT and I would like to ask if what I'm doing seems correct. I'm using the GSL (GNU Science Library) for the FFT function. I've been reading tutorials on FFT's but I would ...
2
votes
2answers
2k views
Converting Real and Imaginary FFT output to Frequency and Amplitude
I'm designing a real time Audio Analyser to be embedded on a FPGA chip. The finished system will read in a live audio stream and output frequency and amplitude pairs for the X most prevalent ...
-3
votes
1answer
245 views
Wave Signal Process (Period) [closed]
What is the best way to detect 1 period in a wave signal?
Does somebody have a specific algorithm to do that? And do you know where you found it?
I know fft, but I don't know how make it give me ...
0
votes
2answers
702 views
Decrypting text using frequency analysis in c#.
I've been tasked with decrypting a text file using frequency analysis. This isn't a do it for me question but i have absolutley no idea what to do next. What i have so far reads in the text from file ...
0
votes
1answer
675 views
Using jTransforms library on a WAV file?
I am trying to do spectral analysis on a WAV file using the jTransforms library: Official Site
But I have problems on how to convert the WAV file into an acceptable input for FFT using jTransforms, ...
2
votes
2answers
574 views
SQL - Determine the most frequently occuring words within a column
Is there an easy way of determining the most frequently occuring word in a column/field using T-SQL or VBA?
I am working on a fuzzy matching system for two given recordsets and would like to produce ...
-2
votes
5answers
242 views
Is it possible to create an array from the frequency of chars within a string? [closed]
Essentially, I found an old piece of LINQ C# code that counted the most frequent letter in a certain string. However, I'm using frequency analysis to solve a decoded text that has been shift-ciphered ...
1
vote
1answer
132 views
Good algorithm to check if post frequency is spam
I have a site where a people can post text. Each post is stored in a database with the ip of the poster and the time of the post. I want to be able to display a recaptcha if I can determine that the ...
2
votes
2answers
2k views
How to use inverse FFT on amplitude-frequency response?
I am trying to create an application for calculating coefficients for a graphic equalizer FIR filter. I am doing some prototyping in Matlab but I have some problems.
I have started with the following ...
3
votes
5answers
1k views
Calculate Character Frequency in Message using Perl
I am writing a Perl Script to find out the frequency of occurrence of characters in a message. Here is the logic I am following:
Read one char at a time from the message using getc() and store it ...
2
votes
3answers
906 views
How to extract a specific frequency range from a .wav file?
I'm really new on sound processing, so maybe my question will be trivial.
What I want to do is to extract a specific frequency range (let's say 150-400 Hz) from a wav file, using R. In other words, I ...
1
vote
2answers
210 views
Resultant of fourier coefficients is very sensitive to window size?
I'm trying to make a frequency analyzer using a windowed fourier series in flash, but the size of my window greatly affects magnitude of the coefficients.
I'm using a formula from a textbook to ...
2
votes
2answers
202 views
How can I transfer a discrete signal from the time domain into the frequency domain and back without losing data?
For a few weeks now, I have been trying to implement a DFT that takes an arbitrary set of bytes and treats them as a signal. It then transforms them to the frequency domain. Following that it ...
6
votes
3answers
2k views
How do I run a high pass or low pass filter on data points in R?
I am a beginner in R and I have tried to find information about the following without finding anything.
The green graph in the picture is composed by the red and yellow graphs. But let's say that I ...
1
vote
2answers
212 views
How can I transfer a discrete set of data into the frequency domain and back (preferrably losslessly)
I would like to take an array of bytes of roughly size 70-80k and transform them from the time domain to the frequency domain (probably using a DFT). I have been following wiki and gotten this code so ...
5
votes
1answer
943 views
Explaining The Count Sketch Algorithm
Can someone explain how the Count Sketch Algorithm works? I still can't figure out how hashes are used, for example. I have a hard time understanding this paper.
0
votes
3answers
547 views
R plot frequency of strings with specific pattern
Given a data frame with a column that contains strings. I would like to plot the frequency of strings that bear a certain pattern. For example
strings <- ...
0
votes
1answer
124 views
Fourier Transformation -
I've been doing a lot of research on this topic and I'm finally getting somewhere. Below is two complex numbers from the java code I'm using:
-9771.0 - j2125.0
-16184.09634718744 - j53968.71008512241
...
1
vote
4answers
667 views
Implementing Real Time frequency spectrum for a beginner
I want to develop an application that would take audio(.wav) as input and display its real time simultaneous frequency spectrum . From what i have looked upon the subject , this requires fourier ...
1
vote
2answers
1k views
Passing AudioQueueBufferRef data to FFT function!
I am trying to compute the frequency of a given sound process through the microphone on the iphone.
I've read all the post about FFT (including all apple code examples e.g aurioTouch,SpeakHere), but ...
0
votes
1answer
458 views
How can I use lucene's shingleanalyzerwrapper + standardanalyzer + indexreader?
I hope you can help me with this problem.
What I intend to do:
Given a right text, I want to count the frequencies for every stemmized token ngrams without the stopwords(in other words, the stopwords ...
0
votes
5answers
1k views
Frequency Analysis in Python -Print letters with frequency rather than numbers with frequency
s=array1 #user inputs an array with text in it
n=len(s)
f=arange(0,26,1)
import collections
dict = collections.defaultdict(int)
for c in s:
dict[c] += 1
for c in f:
print c,dict[c]/float(n)
...
0
votes
0answers
217 views
sc_listener class detects 2 other frequencies when playing a sound sample with a specific frequency?
So I was trying to use the sc_listener class on xcode to detect certain range of frequencies.
I used Audacity to create a tone with 19500 Hz for it's frequency.
And when I run the app on my iPad or ...
-1
votes
2answers
5k views
how can the noise be removed from a recorded sound,using fft in MATLAB?
I want to remove noises from a recorded sound and make the fft of it finding fundamental frequencies of that sound, but I don't know how to remove those noises. I'm recording the sound of falling ...
1
vote
3answers
655 views
convert frequency to keyboard note
I'm trying to write an audio application.
I can play a cin wave from a frequency of 20 to 20K to hear sounds. my question is how can i convert frequencies to keyboard notes in order to create a ...

