Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
15answers
2k views

.NET Library to Identify Pitches

I'd like to write a simple program(preferably in C#) to which I sing a pitch using a mic and the program identifies to which musical note that pitch corresponds. Thank you very much for your prompt ...
13
votes
2answers
371 views

Determine “wiggliness” of set of data - Python

I'm working on a piece of software which needs to implement the wiggliness of a set of data. Here's a sample of the input I would receive, merged with the lightness plot of each vertical pixel strip: ...
6
votes
2answers
147 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 ...
5
votes
6answers
1k views

Improving frequency resolution of FFT output by limiting frequency range?

I am new to FFTs and signal processing, so hopefully this question makes sense and/or isn't stupid. I would like to perform spectrum analysis on a live audio signal. My goal is to find a good ...
4
votes
1answer
443 views

Auriotouch, get musical note from frequency FFT

I'm developing a kind of guitar tuner. I have a function that gives me the FFT, and the values of the FFt for each frequency. How do I get the musical note from there? Do I have to chose the highest ...
4
votes
1answer
269 views

Cleaning up noisy Cepstrum results

I've been working on a simple frequency detection setup on the iphone. Analyzing in the frequency domain using FFT results has been somewhat unreliable in the presence of harmonics. I was hoping to ...
4
votes
3answers
447 views

How could I do frequency analysis on a string without using a switch

I am working a school project to implement a Huffman code on text. The first part of course requires a frequency analysis on the text. Is there a better way aside from a giant switch and an array of ...
3
votes
5answers
123 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 ...
3
votes
4answers
588 views

How to implement smoothing in frequency domain?

I want to do smoothing to an image in the frequency domain. when i use google to see any articles it gave some Matlab codes which i don't need. i could do FFT to an image but i don't know how to ...
3
votes
3answers
352 views

Cryptography. English “normal text”?

I was asked to make a software that will encrypt and decrypt a "normal English" text based on letter frequencies. The question is where do I find some text samples where the official frequencies will ...
2
votes
2answers
88 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
2answers
184 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 ...
2
votes
1answer
179 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. Thanks!
2
votes
3answers
603 views

Summary in R for frequency tables?

I have a set of user recommandations review=matrix(c(5:1,10,2,1,1,2), nrow=5, ncol=2, dimnames=list(NULL,c("Star","Votes"))) and wanted to use summary(review) to show basic properties mean, ...
2
votes
1answer
787 views

Help with using FFT to determine frequency of an audio sample

I'm currently developing a percussion tutorial program. The program requires that I can determine what drum is being played, to do this I was going to analyse the frequency of the drum recording and ...
2
votes
1answer
389 views

how can I statistic my key press frequency and count

I am try to remap my keyboard to type better. But I need to know the frequency of each key include symbol, It will be great if include tab shift ctrl. I need all the keypress acounting not only ...
2
votes
1answer
175 views

SQL query: How to count frequency over a many-to-many relation?

I have a table for blogposts and a table for tags, with a many-to-many relation between them. How can I extract the most frequent tag across a subset of blogposts? (e.g. only those from the past ...
2
votes
5answers
507 views

Is it possible to programmatically edit a sound file based on frequency?

Just wondering if it's possible to go through a flac, mp3, wav, etc file and edit portions, or the entire file by removing sections based on a specific frequency range? So for example, I have a ...
2
votes
3answers
1k views

How to determine the frequency of the input recorded voice in iphone?

I am new to iphone development.I am doing research on voice recording in iphone .I have downloaded the "speak here " sample program from Apple.I want to determine the frequency of my voice that is ...
1
vote
2answers
62 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 ...
1
vote
2answers
130 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
105 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 ...
1
vote
2answers
95 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 ...
1
vote
2answers
100 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 ...
1
vote
4answers
201 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
0answers
206 views

How to use FFT for large chunks of data to plot amplitude-frequency response?

I am a programmer and not a good mathematician so FFT is like some black box to me, I would like t throw some data into some FFT library and get out a plottable AFR (amplitude-frequency response) ...
1
vote
3answers
427 views

How to use cepstral?

Recently I asked this question: How to get the fundamental frequency from FFT? (you don't actually need to read it) My doubt right now it: how to use the cepstral algorithm? I just don't know how to ...
1
vote
1answer
1k views

FFT pitch detection for guitar string

I have simply pitch detection. Input (microphone) data are passed to fft routine, then I'm looking for a pitch with maximum value It means: Max(pow(data[i].getRe(), 2) + pow(data[i].getIm(), 2)) for ...
1
vote
4answers
823 views

Word Frequency in Text using Python but disregard stop words

This gives me a frequency of words in a text: fullWords = re.findall(r'\w+', allText) d = defaultdict(int) for word in fullWords : d[word] += 1 finalFreq = sorted(d.iteritems(), key ...
0
votes
1answer
32 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
40 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, ...
0
votes
0answers
38 views

How would you filter occurrences of more or less discrete, slightly varying frequencies in an audio-file using python?

I want to search an wma-file for occurrences of more or less discrete, slightly varying frequencies having a minimum length (also known as voice) in python(2.6). I heard, a goertzel-algorithm would ...
0
votes
3answers
121 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
52 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 ...
0
votes
2answers
626 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
139 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
273 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
115 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 ...
0
votes
3answers
158 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 ...
0
votes
3answers
1k views

How to get the fundamental frequency from FFT?

I am developing a flash guitar, and the only apparent method to discover the frequency of the mic's data looks to be using FFT. Nevertheless, after something like 30 hours of research I could not ...
0
votes
1answer
94 views

DWT or WP for signal filtration

I'm dealing with a tricky problem related to the wavelet transform (tricky at least for me :). I have a signal, say a sinusoid (frequency f1) with another sinusoid (freq. f2) superposed. If the other ...
0
votes
0answers
53 views

clip a voice frequency

I have audio file(mp3) with two voices.. how do i reduce the volume of one person and enhance the volume of other? Is there any software to do that?
0
votes
1answer
511 views

Input audio frequency analysis and generating particular frequency to output

My aim is to have a set of frequencies like 2 frequencies that represent the bits (0 and 1). I want to send those frequencies to the audio out through sound card. At the other end I connect the cord ...
0
votes
2answers
116 views

How to replace and count frequency of a word or word sequence?

I need to do two things, first, find a given text which are the most used word and word sequences (limited to n). Example: Lorem *ipsum* dolor sit amet, consectetur adipiscing elit. Nunc auctor ...
0
votes
4answers
114 views

SQL: how to get a weighted count using GROUP BY?

How can I make a query like: select myvalue, count() as freq from mytable group by myvalue; But where freq sums values from a weight column instead of counting each row as 1? I'm using MySQL 5.1.
0
votes
1answer
512 views

Frequencies of lucene unigrams and bigrams

i am storing in lucene index ngrams up to level 3. When I am reading the index and calculating scoring of terms and ngrams I am obtaining results like this TERM FREQUENCY.... TFIDF ...
0
votes
2answers
436 views

Capture Sound from Mic/Headphone and trigger action at perticular frequency

I am using .NET 3.5. I need to Capture Sound from Mic/Headphone and trigger action at particular (not exact) frequency (Need to perform some action when player hits ball with stick while playing ...
0
votes
2answers
354 views

Word lists for a lot of articles - document-term matrix

I have nearly 150k articles in Turkish. I will use articles for natural language processing research. I want to store words and frequency of them per article after processing articles. I'm storing ...
-1
votes
2answers
775 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
votes
2answers
321 views

Bash script frequency analysis of unique letters and repeating letter pairs how should i build this script?

Ok,first post.. So I have this assignment to decrypt cryptograms by hand,but I also wanted to automate the process a little if not all at least a few parts,so i browsed around and found some sed and ...

1 2