Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
2k views

Python library for playing fixed-frequency sound

I have a mosquito problem in my house. This wouldn't usually concern a programmers' community; However, I've seen some devices that claim to deter these nasty creatures by playing a 17Khz tone. I ...
11
votes
8answers
4k views

Detecting the fundamental frequency

There's this tech-festival in IIT-Bombay, India, where they're having an event called "Artbots" where we're supposed to design artbots with artistic abilities. I had an idea about a musical robot ...
11
votes
7answers
3k views

Determining Word Frequency of Specific Terms

I'm a non-computer science student doing a history thesis that involves determining the frequency of specific terms in a number of texts and then plotting these frequencies over time to determine ...
10
votes
2answers
324 views

Plot weighted frequency matrix

This question is related to two different questions I have asked previously: 1) Reproduce frequency matrix plot 2) Add 95% confidence limits to cumulative plot I wish to reproduce this plot in R: ...
10
votes
12answers
1k views

Python - Is a dictionary slow to find frequency of each character?

I am trying to find a frequency of each symbol in any given text using an algorithm of O(n) complexity. My algorithm looks like: s = len(text) P = 1.0/s freqs = {} for char in text: try: ...
9
votes
1answer
4k views

Android audio FFT to retrieve specific frequency magnitude using audiorecord

I am currently trying to implement some code using for android to detect when a number of specific audio frequency ranges are played through the phone's microphone. I have set up the class using the ...
9
votes
10answers
3k views

C# Why are timer frequencies extremely off?

Both System.Timers.Timer and System.Threading.Timer fire at intervals that are considerable different from the requested ones. For example: new System.Timers.Timer(1000d / 20); yields a timer that ...
8
votes
3answers
3k views

Python frequency detection

Ok what im trying to do is a kind of audio processing software that can detect a prevalent frequency an if the frequency is played for long enough (few ms) i know i got a positive match. i know i ...
7
votes
4answers
2k views

How to find most common elements of a list?

Given the following list ['Jellicle', 'Cats', 'are', 'black', 'and', 'white,', 'Jellicle', 'Cats', 'are', 'rather', 'small;', 'Jellicle', 'Cats', 'are', 'merry', 'and', 'bright,', 'And', 'pleasant', ...
7
votes
4answers
3k views

Explain the FFT to me

I want to take audio PCM data and find peaks in it. Specifically, I want to return the frequency and time at which a peak occurs. My understanding of this is that I have to take the PCM data and ...
7
votes
5answers
1k views

Algorithm to determine the effective “phase difference” between two signals with different frequencies?

The quick version: What algorithm could I use to determine the "phase difference" between two square wave signals with different frequencies, if the only information that I have is the time at which ...
7
votes
7answers
4k views

item frequency count in python

I'm a python newbie, so maybe my question is very noob. Assume I have a list of words, and I want to find the number of times each word appears in that list. Obvious way to do this is: words = "apple ...
7
votes
9answers
1k views

Mathematical analysis of a sound sample (as an array of numbers)

I need to find the frequency of a sample, stored (in vb) as an array of byte. Sample is a sine wave, known frequency, so I can check), but the numbers are a bit odd, and my maths-foo is weak. Full ...
6
votes
2answers
112 views

Sorting a list by frequency of letter in python (decreasing order)

Like the title says I need to write a function that will sort a list by frequency of letters. Normally I would supply my code with what I have so far but I have no idea where to get started. I'm ...
6
votes
3answers
3k views

Graphing the pitch (frequency) of a sound

I want to plot the pitch of a sound into a graph. Currently I can plot the amplitude. The graph below is created by the data returned by getUnscaledAmplitude(): AudioInputStream audioInputStream = ...
6
votes
3answers
635 views

MATLAB - Missing fundamental from an FFT

I am currently working on my fourth year project (computer science) which involves the automatic transcription of music -> sheet music. I am doing it in Matlab at the moment but will have to be ...
5
votes
3answers
184 views

Play stereo tone in android

Similar topics on this question include only playing tone in mono where the left and right frequencies are the same. My question is: how to generate a stereo tone such that the left channel has a ...
5
votes
4answers
194 views

Python Audio Analysis

I'm currently working on a project that has been relatively easy, up until now. The underlying project is to transmit data/messages over lasers using audio transformation. In a nutshell the process is ...
5
votes
4answers
524 views

Counting frequency of words in documents using python regex

Created a python module which reads in a file, removes the stop words and outputs a python dictionary with the word and its frequency (How many times it occurred in the document). def run(): filelist ...
5
votes
1answer
766 views

How to generate sounds by frequency in java

My question is how to generate my own sound by frequency in java? I can play wavs or midis, but now I don't need this. I want to create a simple guitar program, and I want to play chords with this ...
5
votes
1answer
686 views

What is the most reliable way to determine the CPU clock frequency of Android phones?

I found some references and ended up with the following code: String[] args = { "/system/bin/cat", "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq" }; cmd = new ProcessBuilder(args); Process ...
4
votes
1answer
440 views

An interesting Google interview algorithm I found online that requires linear time

So I found this Google interview algorithm question online. It's really interesting and I still have not come up with a good solution yet. Please have a look, and give me a hint/solution, it would be ...
4
votes
2answers
92 views

Better way to get a frequency table for continuous data (R)?

With df: df <- data.frame(value=abs(rnorm(100, 25, 5)), status=sample(0:1,100,replace=T)) df$value[sample(1:100,5)] <- NA I need to get a frequency (percentage) table (better return a matrix) ...
4
votes
2answers
186 views

Getting frequency values from histogram in R

I know how to draw histograms or other frequency/percentage related tables. But now I want to know, how can I get those frequency values in a table to use after the fact. I have a massive dataset, ...
4
votes
3answers
125 views

Real time detection of peaks of frequency of events

In a web application, I get a trigger every time an event occurs. I want to detect 'violent' frequency peaks, which probably translate into abnormal behaviour. I can think of two naive ways of ...
4
votes
1answer
444 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
3answers
166 views

Algorithm for determining which words make a phrase popular

Suppose I had a list of slogans (short, multi-word phrases), and people had voted for the ones they liked best, and I wanted to assess which words, if any, made some slogans more popular than others. ...
4
votes
2answers
1k views

Getting frequency of sound on iPhone

I'm looking for an Objective-C class that allows me to get the frequency of a live input sound on the iPhone. Didn't find anything useful. Before you ask: the frequency will not change for 0.1 ...
4
votes
3answers
2k views

How to detect sound frequency / pitch on an iPhone?

I'm trying to find a way to detect sound frequency being recorded by iPhone's Microphone. I'd like to detect whether the sound frequency is going up or down.
4
votes
4answers
852 views

Anti-aliasing: Preferred ways of determing maximum frequency?

I've been reading up a bit on anti-aliasing and it seems to make sense, but there is one thing I'm not too sure of. How exactly do you find the maximum frequency of a signal (in the context of ...
3
votes
2answers
94 views

Splitting Strings and Generating Frequency Tables in R

I have a column of firm names in an R dataframe that goes something like this: "ABC Industries" "ABC Enterprises" "123 and 456 Corporation" "XYZ Company" And so on. I'm trying to generate ...
3
votes
2answers
142 views

Make a table of string frequency - R

I am trying to make a summary table of many strings in R. My data looks like this: x<-c("a", "a", "b", "c", "c", "c", "d") How would I analyse the recurrence of each string at once? Ideally to ...
3
votes
4answers
249 views

How to get CPU frequency in c#

How can I get in c# the CPU frequency (example : 2Ghz) ? It's simple but I don't find it in the environnement variables. Thanks :)
3
votes
2answers
104 views

Create a variable capturing the most frequent occurence by group

Define: df1 <-data.frame( id=c(rep(1,3),rep(2,3)), v1=as.character(c("a","b","b",rep("c",3))) ) s.t. > df1 id v1 1 1 a 2 1 b 3 1 b 4 2 c 5 2 c 6 2 c I want to create a third ...
3
votes
2answers
303 views

Audio programming, generating an harmony

I'm trying to develop an application similiar to the tonematrix in C#. I've tried first with .net and NAudio library, now I'm trying with XNA, but it seems like that all I can get is a cacophony. ...
3
votes
1answer
325 views

Can windows phone 7 microphone detect frequencies in the range of 18k-19kHz?

Can the windows phone 7 in-built microphone detect frequencies higher than 18kHz?
3
votes
3answers
269 views

How to synthesize exact frequencies on flash?

I've researched a bit and I discovered a way to generate sounds dynamically on flash: import flash.media.Sound; var mySound:Sound = new Sound(); ...
3
votes
1answer
2k views

Android ToneGenerator example code

Just wondering if anyone has come by any example code using the ToneGenerator class? I would like to generate tones in the frequency range of about 200Hz to 900Hz. Thanks...
3
votes
1answer
683 views

What range sound frequency can be measured from iphone's microphone

i want to know the range of frequency that the iphone's microphone can listen and can we play the least frequency sound recorded by iphone's microphone.. how to record a sound(any sound or voice) ...
3
votes
4answers
483 views

Bash script to find the frequency of every letter in a file

I am trying to find out the frequency of appearance of every letter in the english alphabet in an input file. How can I do this in a bash script?
3
votes
4answers
1k views

Calculating CPU frequency in C with RDTSC always returns 0

The following piece of code was given to us from our instructor so we could measure some algorithms performance: #include <stdio.h> #include <unistd.h> static unsigned cyc_hi = 0, cyc_lo ...
3
votes
2answers
1k views

Fundamental Frequency + Voice Detection in c#

I'm trying to detect voice throught input from the microphone in real-time. I allready receive the input, execute FFT algorithm and have the result in dB. I have a frequency domain, a time domain and ...
3
votes
2answers
2k views

How to generate a lower frequency version of a signal in Matlab?

With a sine input, I tried to modify it's frequency cutting some lower frequencies in the spectrum, shifting the main frequency towards zero. As the signal is not fftshifted I tried to do that by ...
3
votes
4answers
1k views

MySQL SELECT most frequent by group

How do I get the most frequently occurring category for each tag in MySQL? Ideally, I would want to simulate an aggregate function that would calculate the mode of a column. SELECT t.tag , ...
3
votes
11answers
2k views

How to find high frequency words in a book in an environment low on memory?

Recently in a technical interview, I was asked to write a program to find the high frequency words(Words which appear maximum number of times) in a text book. The program should be designed in such a ...
3
votes
3answers
339 views

Requests limit per hour

How to limit requests per hour from one IP like it is in Twitter? For example, I want to provide 100 requests per hour. Is there any solution? Apache modules? Thanks.
2
votes
1answer
105 views

Looking for a frequency list of English stopwords

I'm simply looking for a list of English stopwords (easy) sorted by their frequency, not alphabetically (less easy to find). The reason behind this request is that when I remove stop-words from a ...
2
votes
1answer
113 views

How to create tuner that runs continuously?

I am creating a tuner for Android (similar to a guitar tuner) and I am wondering how to allow the tuner to run continuously (for a couple minutes or so). I don't want it to be a service that runs in ...
2
votes
1answer
215 views

Android audio FFT to display fundamental frequency

I have been working on an Android project for awhile that displays the fundamental frequency of an input signal (to act as a tuner). I have successfully implemented the AudioRecord class and am ...
2
votes
1answer
118 views

Test random numbers [closed]

I have a random number generator. Now I just need to run three tests monobit test, runs test and the Chi square test. I am sure there are source codes available (in either of maybe c cpp or java) ...

1 2 3 4 5