The rate at which a thing occurs or is found.

learn more… | top users | synonyms

0
votes
0answers
24 views

How to change frequency of audio file and save it as mp4 file on sdcard?

I m trying to make an app where user can record his voice and can play the voice in funny tone. Like talking tom application but not just that..He shd be able to share that recorded sound file. I m ...
0
votes
0answers
13 views

explicitly setting the interval for distributed GCs does not seem to work

I have been trying to control the interval between Full GCs triggered by RMI when using JMX (known as distributed GCs). Specifically, I start my java platform like this: java ...
0
votes
0answers
15 views

Hot to get the frequency with fftpack in real time [duplicate]

i wonder how could get frequency from below source code. i know that the frequency expression within 256. but, i need real frequency of the sound. And, when i set 44100 sampling rate, how much range ...
0
votes
0answers
29 views

Frequency of Music Note Function Test

I'm having some trouble with this code that I'm writing in c. What it should basically do, is to test whether or not the freq() function returns the correct value based on a pre-defined array of ...
0
votes
0answers
4 views

Counting words from my vocabulary in large document

I have a quite large document including 200 reviews and my target is "how to determine the frequency of each word of predefined vocabulary in that large document" I looked up in the forums for ...
0
votes
1answer
17 views

Elasticsearch how to return the number of maching term for each document

I'm very new to elasticsearch and I'm interested in how is possible to retrieve the number of matching term inside each document processed. I know that I can get a score, but I'm looking to get number ...
1
vote
1answer
26 views

Generating yearly frequency plot from multi-year data

I have hourly wind speed data in the following format DT,DIR,SPEED ...
0
votes
1answer
17 views

Add “Rarity-Frequence” with actionscript/flash

I'm making a small actionscript game where one objects has to fly to dodge certain objects. Now I have all objects made but the problem is that the appear all as frequently. And I want that the ...
1
vote
0answers
36 views

Frequency array feeds FFT

The final goal I am trying to achieve is the generation of a ten minutes time series: to achieve this I have to perform an FFT operation, and it's the point I have been stumbling upon. Generally the ...
-3
votes
0answers
44 views

Is possible to change voice frequency by text hash? [closed]

I have web application, where I need to change human voices by specific key. I would like to have something like that for input: $word = "Oh my god"; $hash = "adce9200bedaa726a75407c4f225c6bb"; ...
0
votes
2answers
54 views

Nested tables and calculating summary statistics with confidence intervals in R

This question is about the statistical program R. Data I have a data frame, study_data, that has 100 rows, each representing a different person, and three columns, gender, height_category, and ...
0
votes
1answer
62 views

DSP FFT fundamental frequency wav file

I have a FFT algorithm in C# and I generate sine wave in a buffer at a frequency of 440, FS=1600 and Window length of 2048. Before sending the signal to the FFT, I double the window length and put ...
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 = ...
5
votes
1answer
60 views

How to create missing values in table in R?

I have 40 pairs of birds with each male and female in the pair scored for their colour. The colour score is a categorical variable with a value range of 1 to 9. I would like to create a table with the ...
0
votes
0answers
23 views

how to determine serial frequency notes of an audio recorded file 3gpp, amr, aac in Android

I'm new here.. can anybody help me with some tutoring about codes of how to create a simple frequency note detector from an audio file in Android. I'm trying to make an Android app to record ...
2
votes
2answers
79 views

Get mobile network frequency band Android

I'm building an app for Android witch logs some data about phone mobile network, Access Type: (GPRS, 3G, HSPA, LTE) Frequency: (WCDMA 2100 Band 1) LAC: Location Area Code SAC: Serving Area CellID ...
0
votes
1answer
52 views

Android playback quality

A portion of an application that I am writing requires me to play a heart sound. When I play it using the source below, several problems arise. 1) It's not very loud, even when I set it to max ...
0
votes
0answers
17 views

iOS Remote IO frequencies

Some other SDK's mess up Remote IO when using nonstandard frequency for output. My input frequency is 22050.0 and I'm trying to get an output frequency about 32000. But it's got to be just the right ...
0
votes
1answer
40 views

access to model specific registers, IA32_APERF / IA32_MPERF, to measure actual CPU frequency

As far as I understand to measure the actual operating CPU frequency I need access to the model specific registers (MSR) IA32_APERF and IA32_MPERF (Assembly CPU frequency measuring algorithm). ...
1
vote
1answer
81 views

How to test sound level rms algorithm

My app. is calculating noise level and peak of frequency of input sound. I used FFT to get array of shorts[] buffer , and this is the code : bufferSize = 1024, sampleRate = 44100 int bufferSize = ...
1
vote
0answers
56 views

I want to find the fourier spectrum of an image

Is this correct? p1 is the source image and p2 the destination image and all the 3 channels have the same value as I am working with grayscale image and pp1[i] accesses the 'ith' channel. for(int ...
0
votes
3answers
52 views

Using SAS, is it possible to get a frequency table where no data exist?

This is a follow-up to my previous post on SO. I am trying to produce a frequency table of demographics, including race, sex, and ethnicity. One table is a crosstab of race by sex for Hispanic ...
0
votes
0answers
29 views

Getting frequency from a mp3 or wav file [duplicate]

Researching the Internet, I found out that for getting the frequency of the sound from a mp3 file or wav file, I need to use FFT algorithm. Can someone give me a good pythonic way of implementing the ...
1
vote
1answer
51 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 ...
3
votes
2answers
55 views

Frequency of key in group

Given I have a dataframe df like this containing the columns Key and User. Key User 1 Bob 2 Tobi 1 Bob 3 Bob 4 Bob 5 Bob 6 Tobi 5 Bob I want to create a new column ...
1
vote
1answer
68 views

R: relative frequency in r by factor

I would like to get a table of top 10 absolute and relative frequencies for a variable across other factor variable. I have a dataframe with 3 columns: 1 column is a factor variable, 2nd is other ...
0
votes
2answers
50 views

Using a trie data structure on word occurance

This question is language independent and is more about understanding how to implement the trie or whether tries would be appropriate for what my program is suppose to do. Say I have a string of text ...
0
votes
2answers
65 views

Implementing a Map to count character frequency

Basically I'm trying to implement a map using a String as the key (single character) and an integer variable (character frequency). I get inaccurate frequencies when the program runs. Does anyone ...
0
votes
2answers
195 views

extracting frequency of signal from FFT

I am new to Matlab and FFT. I need to extract the dominant frequency from a signal which is varying in magnitude and frequency. I tried to perform a detrend and then an FFT to obtain the frequency but ...
2
votes
1answer
91 views

Is it possible to use CUDA in order to compute the frequency of elements inside a sorted array efficiently?

I'm very new to Cuda, I've read a few chapters from books and read a lot of tutorials online. I have made my own implementations on vector addition and multiplication. I would like to move a little ...
3
votes
1answer
80 views

SQL frequency of event

I've been asked to report the frequency of contacts for our clients i.e. how many of our clients are seen on a weekly, monthly, quarterly or annual basis. When "frequency" is discussed in forums they ...
3
votes
2answers
115 views

Can an Arduino sample audio in microseconds for 1-4 kHz?

I've just hooked up a electret microphone to an Arduino, and I'd like to sample between the ranges of 1 kHz and 4 kHz. I understand this is limited to the machine code and the ADC, so I'm ...
3
votes
3answers
49 views

Python Beginner - How to generate a list and frequency from another list

Given: [['x','a'], ['y','b'], ['z','a']] I would like a list of the elements and a count frequency of the 2nd element: [['x','a',2], ['y','b',1], ['z','a',2]]
2
votes
2answers
90 views

C# Frequency Retrieval

What I need to do is calculate the frequency of the microphone input. I'm using IWaveProvider for this and its implemented Read(). The buffer always has a size of 8820 elements and something seems to ...
0
votes
0answers
58 views

Sound editing and equalizer on python

Im currently using pyglet as my sound library on python, The library is great but it does not contain an important feature i really need: Frequency control while playing a certain song (lets say ...
0
votes
0answers
44 views

OpenAL/SFML get pitch value

I've been googling for a while to see if there is any way to retrieve the frequency/pitch of some sound buffer. I know there is alSourcef in OpenAL that changes the pitch of some sound. Basically, I ...
1
vote
1answer
138 views

Use iOS Keychain to store key & secret of API call

I am storing the key & secret required for API call in iOS keychain using Apple code My key & secret keeps on changing after every call to API. So once they are changed I save them in ...
0
votes
1answer
40 views

Frequency divider by any integer 1-16

I have implemented a frequency divider by the powers of 2. Now I am interested in doing a divider by any integer number from 1 to 16. Yes, I have tried but yet no ideas. How can I approach this ...
1
vote
1answer
26 views

chirp phase alteration

I am trying to create a swept-frequency cosine, and I want to be able to set the phase as I please. I tried that code, but I get an error. I want to create a vector mat(1:40), where I can manually set ...
1
vote
2answers
153 views

Converting word frequency to a graphical histogram in python

This is what I have right now, thanks to Pavel Anossov. I am trying to convert the word frequency that has been outputed into asterisks. import sys import operator from collections import Counter ...
0
votes
1answer
74 views

Can R plot a histogram *without* doing the frequency count? My data already consists of (item, count) pairs

All the examples I see from R hist() starts with a raw list of data, and does the frequency counts in R. My data is not raw, it's already counted and binned, for instance A, 34 B, 15 C, 82 D, 22 Can ...
0
votes
0answers
34 views

Relationship between bins in frequency vector and the frequency peaks

I would like to know if there is any general relationship between bins of frequencies and peak frequency: say a wave x=Asin(2*pi*w*t +phi), goes through fft and fftshift to get both the positive and ...
0
votes
3answers
82 views

How do I find frequency of values appearing in all rows of a matrix in MATLAB?

I have a 161*32 matrix (labelled "indpic") in MATLAB and I'm trying to find the frequency of a given number appearing in a row. So I think that I need to analyse each row separately for each value, ...
-4
votes
1answer
42 views

Dynamics sound frequency on left and right ear [closed]

i already try to develops a program using java to create an audio that the frequency on left and right ears are different and the frequency of the audio can be adjusted. How can this happen, what ...
-1
votes
1answer
59 views

LWJGL can't change display if it's a different frequency

Using a Windows 7 64-bit computer and a monitor that supports different refresh rates: 24hz, 30hz, 59hz, 60hz. I have a small LWJGL application that sets the fullscreen display mode to "1280 x 720 ...
-2
votes
1answer
200 views

Find most common/frequent element in an ArrayList in Java

I have an array list with 5 elements each of which is an Enum. I want to build a method which returns another array list with the most common element(s) in the list. Example 1: [Activities.WALKING, ...
4
votes
4answers
134 views

determine frequency of string using grep [duplicate]

if I have a vector x <- c("ajjss","acdjfkj","auyjyjjksjj") and do: y <- x[grep("jj",x)] table(y) I get: y ajjss auyjyjjksjj 1 1 However the second string ...
1
vote
1answer
118 views

Scala count of words in a Map

I have a Map[String,String] wherein the last key,value pair is "Text"->The text of the documents. I wish to calculate the count of each word in the document and I was thinking of having another map ...
-2
votes
1answer
71 views

Perl Element Frequency within Arrays [closed]

I have a txt input file of a short story. Once I've read the txt file into my program, how would I find the frequency of every single term? For example, how many times the word "the" appears, and how ...
0
votes
1answer
157 views

Matlab dividing into frequency domain samples

ttttttttttttttttttttttttttttttttttttttttttttttttt

1 2 3 4 5 10