0
votes
0answers
12 views

how to transform time domain to frequency domain java

i got problems during finished my undergraduated thesis , i want to get frequency domain from array of byte from an audio recording . here's my code to get byte from audio which i record . ...
0
votes
2answers
18 views

Comparing frequency taken from mic to known frequency

I have built an app that takes input from the microphone of my phone and calculates the frequency. I am using the Jtransform library to calculate the FFT and thus the frequency. I have followed ...
1
vote
2answers
40 views

Displaying a double (frequency) that is updated constantly while recording with Android

I am building an android application that displays the Frequency of a sustained note with the FFT algorithm. I am using Jtransform methods. My issue currently is that I can't display the frequency on ...
0
votes
0answers
14 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 ...
2
votes
2answers
87 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
2answers
68 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 ...
-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
61 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
215 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, ...
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 ...
-1
votes
1answer
49 views

BFSK implementation on sound card [closed]

My question is that is it possible to develop a Java modulator of BFSK using the sound card of computer? With baud rate of 100.
1
vote
4answers
132 views

Relative frequency in java

I want to create a program to help me with the statistics, but I'm having problems from the beginning and I'm making a huge mess to calculate the relative frequency of an array with random numbers and ...
1
vote
1answer
166 views

Java playing wrong sound frequency

I am writing a java sound application that transitions linearly from one frequency to another. When I input a constant frequency (aka the first and last frequency are the same), the correct frequency ...
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
129 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 ...
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 ...
2
votes
1answer
360 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 ...
0
votes
0answers
185 views

Java RMS Frequency Is Incorrect

I am trying to create a program that records from the microphone and identifies the frequency in the tone that was produced. The code below records from the microphone, calculates the RMS of ...
0
votes
1answer
418 views

Android library to get pitch from WAV file

I have a list of sampled data from the WAV file. I would like to pass in these values into a library and get the frequency of the music played in the WAV file. For now, I will have 1 frequency in the ...
1
vote
2answers
255 views

how to retrieve the different original frequency in each FFT caculating and without any frequency leakage in java

I'm fighting for such question as recovering the original frequency from audio data recorded by mic. Sorry for my english... Let me explain this question more clearly. I have generated some ...
1
vote
3answers
283 views

Count occurences of numbers as a user inputs the numbers and display the highest occurence [closed]

I am trying to count the occurences of numbers entered in a program by a user as the user inputs the numbers. They all are integers. This must be displayed in a TextArea. If more than one number has ...
3
votes
2answers
524 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 ...
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 ...
0
votes
3answers
114 views

wordCount frequency returns repeated Set in java

I have a method which returns single word as a String. I need to count all those words returned by the method which reads chunk of text. Problem is I am getting the count right but output is wrong. ...
2
votes
1answer
183 views

Finding a cumulative frequency array

This method converts a frequency array into a cumulative frequency array. For example if the initial array was { 1, 2, 3, 4} calling the method should give you { 1, 3, 6, 10} This is what Ive ...
3
votes
4answers
2k views

Java equivalent of c# system.beep?

I am working on a java program, and I really need to be able to play a sound by a certain frequency and duration, similarly to the c# method System.Beep, I know how to use it in c#, but I can't find a ...
0
votes
2answers
342 views

Getting relative frequency of each character in a string in java

I wanted to get the average of each unique character in a string. I have an example here as it would be easier to illustrate it. String: The big brown fox Average of each character including ...
0
votes
2answers
152 views

How to implement Lists of Hashmap/ArrayList

Hi everyone I am having a problem trying to get this to work. Basically what I wanted to do is to read a text file containing this kind of data not exactly but just similar and count the frequency of ...
0
votes
1answer
582 views

Finding the peaks of a spectrogram

I am currently working on a project for my 2nd year. I am supposed to code in java a tuner. I have chosen to do a guitar tuner. After looking around on the internet, I found a java code to do a FFT. ...
0
votes
0answers
558 views

compare two audio file in java

i want to make a project in which i am going to record a user's voice and then compare it with a stored voice. I searched for that and i come up with MFCC and FTT algorithm. but i really don't ...
0
votes
1answer
349 views

Android-Java: Detecting particular notes (by frequency and pitch)

In the most basic question, is it at all possible to detect the notes being played in a particular piano piece using just the Android mic? In the future, the iPad mic if this goes well. To start, I'd ...
3
votes
2answers
462 views

Java frequency analysis performance

I'm working on an application that samples audio and needs to do real time processing (FFT and harmonic product spectrum) of this data. I need to use a sampling rate of 44100Hz and need a frequency ...
0
votes
1answer
550 views

java music get the wave length (frequency) of a song?

Just starting a new program and do you guys have any ideas in how to get a exact frequency of a song at specific time of a song. like import the song then for every .01 sec it will store the frequency ...
2
votes
0answers
478 views

Java Perlin Noise Implementation Problems

Hey stackoverflow community! I have been reading about perlin noise for the past 2 weeks and tried implementing it on my own in the most basic way. Even so, my program does not work. It outputs near ...
2
votes
6answers
235 views

How to find out the most appear numbers from the String?

I have a String which contains numbers in a comma separated form. and I want to extract the most appears numbers from the String. For example I have a String like.. String ...
1
vote
1answer
1k views

Counting real time audio frequency in java

I have a problem counting voice input frequency from the audio input of my microphone. Can anyone help me with this? I'm supposed to get an audio input from my microphone and count its frequency. ...
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 ...
0
votes
1answer
768 views

java: Find integer's frequency in an array

I need to develop a java program that asks the user to inter some integers and find the largest and smallest number and the average of those numbers and then divide the set of array into a number of ...
2
votes
1answer
273 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
vote
2answers
291 views

how to find frequency of a phrase (multiple token string) inside a document in java?

I want to find the frequency of a multiple-token-string or phrase inside a document. Its not the word/single-term frequency that I am looking for, its always will be multiple-term and the number of ...
2
votes
2answers
1k views

How to determine the magnitude of a frequency and the phase angle from an audio sample?

I'm currently working on this project that implies some DSP skills. I must extract the audio from a movie and then, by analyzing it, I must determine when someone speaks or not, more like an voice ...
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 ...
0
votes
2answers
223 views

How do I determine the term frequency of the terms in each document?

I'm building an inverted index, but I can't seem to get the correct frequencies when I check the database. I read everywhere that you should use a HashMap, but I'm not quite sure if this is the ...
1
vote
6answers
472 views

More cores VS more frequency for Java

For heavily multi-threaded Java server app, what would be more recommended, having more CPU cores (6 instead of 4), or higher CPU frequency (2.53 Ghz instead of 2.4 Ghz). It seems to me that it ...
4
votes
1answer
7k 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...
5
votes
1answer
2k 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 ...
2
votes
1answer
1k views

Any way to change the sampling frequency of a WAV (or MP3) in Android or just Java?

I'm trying to get files played through a mono (SCO) BT headset in Android. The files have to have an 8000 Hz frequency, but the ones I have are 44100 Hz. The files are MP3s, but I've already created ...
1
vote
1answer
95 views

java progem to find distributional array of a word

I want to find the frequency of a word in each line of a file.I want to do this for every word in the file.I'm using BufferedReader and FileReader in java. can anyone help me plz???
5
votes
1answer
1k 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 ...
0
votes
1answer
401 views

changing scaling_governor on android device

hi guys im trying to change the scaling_governor on android device using this code String[] args = {"/system/bin/echo userspace >", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor"}; ...

1 2