The rate at which a thing occurs or is found.

learn more… | top users | synonyms

1
vote
1answer
101 views

Data Structure design design

Following is the scenario which i had done couple of times .. Count the frequency of words in a paragraph. I create a Map and store the count. SO my map contains <Today, 10> <the, ...
0
votes
1answer
120 views

First time working with arrays, trying to create frequency table

I can't see where I'm going wrong with this one, I want it to display the frequencies of the survey's result but all I get is zeros, for example if I enter 1,1,2,2,5 I want it to output: Displaying ...
-1
votes
1answer
64 views

enumerate array and report contiguous occurrences with index range

what sort of php array enumeration must I use to get from this array: [0] => 0 [1] => 0 [2] => 0 [3] => 0 [4] => 42 [5] => 42 [6] => 42 [7] => 42 [8] => 36 [9] => 36 ...
3
votes
1answer
227 views

Frequency Tables in R

This seems to be basic, but I wont get it. I am trying to compute the frequency table in R for the data as below 1 2 2 1 3 1 I want to transport the the two way frequencies in csv output, ...
1
vote
3answers
307 views

How to handle (Google Forms - Spreadsheet) “Checkboxes” answers in SPSS

I am analyzing an electronic survey I made using Google Forms and I have the following problem. One of the questions can take multiple answers in the form of Checkboxes as shown in the picture below. ...
1
vote
1answer
231 views

iPhone audio frequency [duplicate]

Possible Duplicate: How to detect sound frequency for particular sound in iphone? I am seeking a way to find the frequency of mic input. I can record my voice or a sin noise in a temporary ...
1
vote
0answers
58 views

Checking Frequency of Pulse, zero pulse case Android

I have a sensor that is measuring wind speed. For zero wind it outputs 0V (LOW) and has no pulse. However it outputs pulses (HIGH) for any speed greater then 0.3m/s. I am trying to write some code to ...
2
votes
1answer
133 views

WPF Limit mouse move message frequency

other than rolling my own method with some sort of timer, is there a better more general way to limit how often you get mouse move messages? I'm doing some quite intensive processing on a mouse move ...
0
votes
1answer
668 views

How to plot the frequency response of butterworth filters using MATLAB

I constructed a code to design 4 filters using butterworth IIR. Low,high,bandpass and bandstop. Input Diolog window opens up to take in user inputs, I set the default values to : def = ...
2
votes
1answer
769 views

FFT of ECG signal in MATLAB

This is the input signal : plot(abs(fft(ecg))) I have also tried fvtool(x_vals) which gave me : However I want the x axis in Hz. So essentially I want to see the frequency ...
0
votes
0answers
89 views

Android-Arduino transfer frequency and time from wav or mp3 file

Currently having a trouble finding an API or code sample to transfer wav or mp3 file (not both necessary) from android to arduino by transforming it to the two arrays of ints. Maybe someone already ...
0
votes
2answers
114 views

Button Click Frequency Array

I need to make a ListBox that displays how often a Button is clicked. The user chooses how many buttons are available to click. Here is what I've tried: int clicked; clicked = ...
0
votes
2answers
162 views

More accurate estimating guitar pitch frequency based on FFT(already) result

I have used FFT algorithm to detect frequency of the sound(guitar pitch) and it works great when I play sinosoidal sound from the computer it will estimate it perfectly but it is not so perfect when i ...
1
vote
1answer
227 views

subset() a factor by its number of observation

I have a problem with subset()function. How can I subset a factor of my dataframe by its number of observation? NAME CLASS COLOR VALUE antonio B YELLOW ...
0
votes
1answer
84 views

Oracle WIDTH_BUCKET count in each Bucket

I have parent-child tables like customer to orders. Each order must belong to one and only one customer and a customer has zero, one or many orders. How do I get a frequency distribution of COUNTS of ...
3
votes
1answer
127 views

Why frequency count in matlab octave origin awk get completely different result with the same dataset?

There is a dataset (just for test) as follow: 0.1 0.2 0.3 0.4 0.5 1.1 1.2 1.3 1.4 1.5 0.1 0.2 0.3 0.4 0.5 I'd like to get the frequency count between the minimum 0.1 and maximum 1.5 with the bin(step ...
2
votes
5answers
97 views

how do I create a table of value-frequency combinations arranged vertically in R

(newbie) how do I create a table of value-frequency combinations arranged vertically, > df = data.frame(fruit=c("apple", "banana", "cherry", "cherry", "apple", "banana", "apple", "date")); > ...
2
votes
2answers
185 views

Confusion in figuring out the relation between actual frequency values and FFT plot indexes in MATLAB

I know that there are a lot of similar questions to this, I am still unable to figure out the answer. Let's say we have time signal in MATLAB: t=0:1/44100:1 and a cosine signal with frequency ...
1
vote
1answer
122 views

Include zero frequencies in frequency table for Likert data

I have a dataset with responses to a Likert item on a 9pt scale. I would like to create a frequency table (and barplot) of the data but some values on the scale never occur in my dataset, so table() ...
0
votes
2answers
378 views

SOLR term frequency

I am using solr, and so far everything is going great. When I do a search, I want to get back how many times the search 'term' was per document, along with the document itself. I have found alot of ...
0
votes
1answer
61 views

Music multiple simultaneous tones, python

I am working on an interesting project relating solving mathematical problems and music. It is easy to generate a specific note (or tone): ton = amplitude*sin(2pi*frequency*time/samplerate) I'm ...
0
votes
2answers
148 views

MySQL Query to select subset of top 50 rows based on frequency

I have a table called data: create table data ( ID int primary key, val varchar(50), forID int constraint fk_forID foreign key (forID) references otherTable(forID) ) I have a view ...
2
votes
0answers
84 views

Describing Frequency & Period with zoo

I have weekly sales observations for several products. I then create a zoo object to hold these data but can't make the frequency/cycle work as I intend. Data is available at Dropbox (asr.csv). I've ...
2
votes
2answers
200 views

How to generate frequency table from raw data in R

I am new to R. I want to generate a frequency table from raw data (decimals) like: x V1 1 10.10 2 46.65 3 53.60 4 38.50 5 45.95 6 12.25 7 59.60 8 23.30 9 11.05 10 58.35 11 40.20 12 ...
0
votes
1answer
941 views

Finding Sampling Frequency of .wav file in MATLAB

I am reading a .wav file in Matlab. Then I play the read file with a specified sampling frequency 44100Hz. But when I try to play a file sampled at low sampling frequency, it gets played as if I am ...
0
votes
1answer
200 views

Removing random elements from ArrayList Java

after a couple of hours of trying this by myself I figured I would ask for help. This am trying to implement a multi set of character and provided certain operations such as add, remove, etc. Those ...
1
vote
2answers
118 views

Get word frequency using search engines

Are there any good services which can give me the amount of web pages a word occurs on ? I need this to calculate Normalized Google Distance. A few years ago there was the google web search API which ...
0
votes
1answer
369 views

Counting the frequency of characters in a file. C++

The task is to print the (given text file) encountered Latin characters using the frequency table (without distinguishing between uppercase and lowercase letters) to file f1. The table must be sorted ...
0
votes
2answers
70 views

SQL frequency counting in a dataset

I have a dataset with an ID and value. For each value I want to get its corresponding frequency in the dataset. What is the most efficient pure SQL query-based solution? (that is not using java ...
0
votes
1answer
105 views

How can I convert an audio file containing pure tones back to serialized data?

Signal processing is a new domain for me, and I don't quite know where to start looking for the solution to my problem. I have a line graph that was converted to an audio file consisting of nothing ...
2
votes
1answer
358 views

count word frequency in multiple files/documents in java

i want to count word frequency to multiple files/documents in java. e.g. a1 = {aaa,aaa,aaa,bbb} a2 = {aaa, aaa, hhh} a3 = {aaa, hhh, bbb, bbb} so, i want to count word frequency for every file ...
1
vote
1answer
216 views

iPhone 5 CPU frequency throttled when running on its battery

I am working on an iOS app that uses iPhone’s CPU to do some complex image processing. I noticed when running on its battery, the iPhone 5 CPU is very sluggish right after you press the power switch ...
2
votes
4answers
182 views

Mysql count frequency

I've checked similar questions but it didnt help in my precise question. So, my table goes like this: id age 1 30 2 36 3 30 4 52 5 52 6 30 7 36 etc.. I need to count the frequency of ages: ...
2
votes
1answer
591 views

FFT algorithm getting wrong sound frequency value

I have performed a FFT algorithm(it is partially MIT) on a 440Hz sample link to the sound sample ttp://www.speedyshare.com/R6d9g/440.wav. But I get wrong sound frequency -> 510Hz. 1.Is the byteArray ...
0
votes
1answer
514 views

Frequency detection on Android - AudioRecord

This is my second question because i hawe a problem. I've to implement a simple Frequency detection on Android. For the DFT i've found the jTransform library ...
0
votes
0answers
88 views

Simulate button presses with guitar frequency c#

I've been playing Rocksmith lately with my guitar and I find it really interesting. The way I believe they 'know' which fret you're pressing is by comparing the frequency of the note to the note that ...
-3
votes
1answer
459 views

Display a graph of wav file c#

I need to display a graph of a wav file in C#, where you can see the actual frequencies of the voice in the file while the file is being played. in C#. Any ideas? thanks, Ofek
0
votes
1answer
161 views

RapidMiner - range by occurence

I want to filter my results (document occurrence) by the most frequent (the 10 most popular them). How do I do that?
5
votes
2answers
714 views

Generating a 78MHz clock from a 100MHz base clock (VHDL)

I have to generate a 78MHz clock (duty cycle 0.5 or 0.7) from a 100MHz base clock (duty cycle 0.5) using VHDL language (so the ratio is 200/156). I know that I can use DCM, PLL or similar, but at this ...
-1
votes
2answers
231 views

Python — Determine Frequency of numbers showing up in dice rolls

these are the functions used to roll the dice. def roll() -> int: ''' Return a roll of two dice, 2-12 ''' die1 = randint(1, 6) die2 = randint(1, 6) return die1 + die2 def ...
1
vote
1answer
42 views

Applying the collections.counter() on UTF-8

I have a list consisting of non-English text in utf-8 format. Therefore, when I attempt to print a single word, it gives me this: u'\u0648\u0627\u0644\u0623\u0631\u0646\u0628' Therefore, in order to ...
0
votes
1answer
143 views

Is there any c# way [to get]/[library which provides the] sound frequency info? [duplicate]

Possible Duplicate: Frequency Analyzer in C# I am looking for easy way(or any way) to get the current sound frequency from the computer microphone. I would like to make a guitar tuner of ...
1
vote
1answer
72 views

How to count frequency of elements located in a small grids?

Lots of data (3 column) in files such as: longitude latitude count 20.12 50.45 1 35.78 24.26 1 20.48 50.16 2 ... ... ... Map (longitude and ...
1
vote
4answers
498 views

Counting letter frequencies

I'm reading in a text file using StreamReader to the program. I need to record the frequency of each letter in the string into an array (where index 0 would be A, and so on). What's the simplest ...
0
votes
0answers
107 views

Getting sound frequency at the moment from the mobile's microphone

I am developing app for Windows Phone which needs to read the sound frequency from the mobile's microphone. For now I want to create just a logic, because I do not have a phone to test it on(right ...
0
votes
3answers
116 views

Convert raw data to frequencies

I'm having a little trouble trying to plot certain graphs with this data set that I have, the data set is similar to: Year Count ENSO NAO 1 1900 5 0.49063600 ...
2
votes
1answer
205 views

How do you plot relative frequency in python

I am looking to plot the relative frequency of a bunch of numbers in Python. I need to use the hist function, I have looked elsewhere on this site but I haven't found anything. I am doing the ...
0
votes
0answers
56 views

How to gauge or compare relative frequency of arbitrary words without a search engine API?

More than a few times I've wanted to programmatically pick the better of two words or phrase using frequency of use on the Internet as a heuristic. The obvious way, and the way to do it manually, is ...
0
votes
0answers
203 views

atmega32 counter to measure frequency giving too high values

I am using a photosensor which gives output as a square wave. The frequency of this square wave is being measured using Atmega32A with 1MHz clock. The full scale output of sensor is 500kHz. I am ...
1
vote
2answers
216 views

Probability count/frequency of related words?

I'm looking for a way to produce a numerical probability value for single words which share a common root word/meaning. Users will generate content using words like "dancer," "dancing," "danced." If ...

1 2 3 4 5 10