The rate at which a thing occurs or is found.
17
votes
12answers
2k 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:
...
17
votes
1answer
13k views
Android audio FFT to retrieve specific frequency magnitude using audiorecord
I am currently trying to implement some code using 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 ...
14
votes
10answers
7k 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 ...
2
votes
2answers
4k views
Get highest frequency terms from Lucene index
i need to extract terms with highest frequencies from several lucene indexes, to use them for some semantic analysis.
So, I want to get maybe top 30 most occuring terms(still did not decide on ...
14
votes
3answers
9k 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 = ...
15
votes
8answers
14k 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 ...
5
votes
6answers
5k 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.
2
votes
2answers
6k views
Frequency Analyzer in C#
I'm looking for a C# source code that performs a frequency analysis on a WAV file and displays the results in a graph, similar to the one displayed in apps like WavePad.
Do you know where I can find ...
15
votes
3answers
7k 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 ...
4
votes
6answers
6k views
The Most Efficient Way To Find Top K Frequent Words In A Big Word Sequence
The question can be described as:
Input: A positive integer K and a big text. The text can actually be viewed as word sequence. So we don't have to worry about how to break down it into word sequence.
...
12
votes
2answers
543 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
4answers
7k 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', ...
1
vote
1answer
520 views
PHP - count frequency of array values
Is there a way in php to count how often a value exists in a large array?
So if I have an array like this:
$array = "1,2,3,4,joe,1,2,3,joe,joe,4,5,1,6,7,8,9,joe";
is there a way to output a new ...
9
votes
4answers
1k 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
1answer
682 views
pandas: Frequency table for a single variable
One last newbie pandas question for the day: How do I generate a table for a single Series?
For example:
my_series = pandas.Series([1,2,2,3,3,3])
pandas.magical_frequency_function( my_series )
...
4
votes
4answers
2k 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
3answers
813 views
frequency table with several variables in R
I am trying to replicate a table often used in official statistics but no success so far. Given a dataframe like this one:
d1 <- data.frame( StudentID = c("x1", "x10", "x2",
...
-1
votes
1answer
123 views
How to get frequency of word in a sentence in R?
I have one input file which has one paragraph. I need to find the frequency of particular word in that paragraph.
cat file:
Text Index
train is good 1
let the train come 5
train is best ...
2
votes
1answer
3k views
How to Calculate Frequency & Amplitude in Flash AS3 with Flash Player 9
How can I calculate Frequency & Amplitude in As3 with FP9. I got the all raw byte using
SoundMixer.computeSpectrum(_testbytes, false, 0);
var g:Graphics = this.graphics;
g.clear();
...
1
vote
2answers
304 views
Using a .fasta file to compute relative content of sequences
So me being the 'noob' that I am, being introduced to programming via Perl just recently, I'm still getting used to all of this. I have a .fasta file which I have to use, although I'm unsure if I'm ...
9
votes
1answer
2k views
iOS FFT Accerelate.framework draw spectrum during playback
I did a lot of research and learned a lot about FFT and the Accelerate Framework. But after days of experiments I'm kind of frustrated.
I want to display the frequency spectrum of an audio file ...
10
votes
10answers
4k 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 ...
7
votes
2answers
3k views
An interesting Google interview algorithm I found online that requires linear time [closed]
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 ...
7
votes
3answers
3k 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 ...
3
votes
2answers
2k 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 ...
14
votes
4answers
4k 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 ...
2
votes
2answers
3k views
How to extract frequency information from an input audio stream (using PortAudio)?
I want to record sound (voice) using PortAudio (PyAudio) and output the corresponding sound wave on the screen. Hopeless as I am, I am unable to extract the frequency information from the audio stream ...
5
votes
3answers
401 views
Intel MSR frequency scaling per - thread
I'm extending the Linux kernel in order to control the frequency of some threads: when they are scheduled onto a core (any core!), the core's frequency is changed by writing the proper p-state to the ...
3
votes
3answers
2k 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 ...
1
vote
1answer
1k views
Increase frequency calls of touchesMoved
Is there a way to increase the frequency calls of touchesMoved than the default? I need more calls of it to draw a smooth circle. It gets called not too frequent by default and so I get an edgy ...
5
votes
1answer
237 views
Is there an library in Java for emitting a certain frequency constantly?
Right, well. First time I'm actually using Java to fix a problem. I bought a new headphone set called Sennheiser 120 HD; but there's an issue.
If there isn't a constant emission of audio then the base ...
3
votes
2answers
954 views
Get the frequency of an audio file in every 1/4 seconds in android
I have a sound file (.3gp) and its about ~1 min. I would like to get the frequency of this sound file in every 1/4 seconds. My idea is to receive samples in every 1/4 seconds from the audio file and ...
3
votes
2answers
548 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
6answers
1k views
Algorithm for generating a 'top list' using word frequency
I have a big collection of human generated content. I want to find the words or phrases that occur most often. What is an efficient way to do this?
2
votes
1answer
2k views
Get sound frequency with Android FFT
The following code just shows a graph, but I want the sound's frequency. I am trying to record voice and get real-time frequency, so that I can play a piano or guitar sound and find the frequency.
...
2
votes
1answer
2k views
How to define frequency of SyncAdapter updates on android?
ContentProvided defined for synchronization is dummy (in accordance with this approach).
2
votes
2answers
3k views
Sql server function for displaying word frequency in a column
I have a table that lists a freet text input from a survey where enterents were allowed to enter their responses (regarding colours they would like to have in their wedding)
I would like to write a ...
1
vote
1answer
52 views
Using R, is it possible to get a frequency table where no data exist?
I am producing some demographic tables, to include race, sex, and ethnicity. One of the tables is a crosstab of sex and race by ethnicity (Hispanic / not Hispanic). So far, there are no Hispanic ...
1
vote
2answers
653 views
What is the theory behind active noise cancellation?
In a previous question, I had asked Why can't I simply negate the source time domain amplitude values to produce a destructive noise signal?
One of the posters said that while simply producing a ...
0
votes
1answer
1k views
Audio playback and spectrum analysis libarary for C#
I would like to create a little application that plays back a music file (format doesn't really matter). The hard part is: at the same time I would like to display the current amplitude of the lower ...
5
votes
1answer
3k views
Most Efficient way to calculate Frequency of values in a Python list?
I am looking for a fast and efficient way to calculate the frequency of list items in python:
list = ['a','b','a','b', ......]
I want a frequency counter which would give me an output like this:
[ ...
4
votes
2answers
229 views
Why do we use only the first buffer in aurioTouch project
I'm investigating aurioTouch2 sample code.
And I noticed, that when we analize audio data, we use only the first buffer of this data, and never other buffers.
in void ...
3
votes
3answers
129 views
Java: How to find number of meet word in file? [closed]
Program need to find if word is in file. If this search was success would show frequency of meet word in file. But this don't work correctly, matches isn't true.
import java.util.concurrent.*;
import ...
3
votes
2answers
522 views
java audio frequency filter
I'm developing a simple audio player in java. The only advanced feature I need is a frequency filter. It's not necessarily a full-featured equalizer function, with different gains for specific ...
3
votes
1answer
563 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
858 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();
...
2
votes
0answers
52 views
Density plot in ggplot [duplicate]
Suppose I have following dataset:
set.seed(seed=10)
n <- 10000
s.data <- data.frame(score = rnorm(n,500,100),
gender = ...
2
votes
2answers
1k views
Setting a relative frequency in a matplotlib histogram
I have data as a list of floats and I want to plot it as a histogram. Hist() function does the job perfectly for plotting the absolute histogram. However, I cannot figure out how to represent it in a ...
2
votes
1answer
467 views
Generate array of bin sizes in Excel
The FREQUENCY function in Microsoft Excel is useful for generating histograms. The first parameter is an array of data values (E.g. A1:A100). The second one is an array of bin sizes. I want to ...
2
votes
1answer
1k 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 ...