2
votes
2answers
62 views

Adjusting tick frequency in tick-based simulation in C

I am writing a small simulation in C and I want certain things to occur N times every second. Currently I have the following code: // Equal to 1 / N struct timespec tick_period = (struct ...
0
votes
0answers
43 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 ...
1
vote
1answer
295 views

C program: how to find the maximum/minimum frequency of a character in a string

I am trying to find a way to get the values of max/min freq of characters in a string E.g. helpme would have max freq = 2 and min freq = 1 (there are 2 e's and there are other letters that occurs ...
0
votes
5answers
124 views

How to define a data type for holding string and numbers in C

C structure question I have a list of words and their corresponding frequencies: word 10 the 50 and 35 overflow 90 How should I hold this data in a structure? Should I use a two dimensional array? ...
0
votes
1answer
298 views

[portaudio]Transmit and Detect frequency - Windows

I'm new to portaudio and i looked at "How to extract frequency..." question but still i would like to have some help. i need to transmit a frequency (using the speakers) and then i would like to check ...
0
votes
1answer
637 views

Memory leak while using linked lists and hash arrays

Whatever I do I cant tell why this is leaking memory. I am releasing all dynamically created memory, yet it says I have 406 leaks. Any hints would be great. I have spent a week trying to figure it out ...
-1
votes
2answers
481 views

Word frequency using C programming and Linked-List but frequency count is wrong

I am stuck and searched all over spending days on this. I need to create a word frequency program using C. For keeping track of collisions I use a linked list, but my code does not give the right ...
-1
votes
1answer
112 views

Increase the output a signal at different frequencies

I'm writing a C program for a micro-controller. At the moment I've already written the functions that reads from an analog-to-digital converter port on the board, and a function that can create a ...
0
votes
3answers
236 views

Change music frequency over time for it to sound like guitar?

I have a command in my framework which outputs a sound frequency to the speaker. How would I change this frequency over time for a note of a given frequency -- say, C2 being 261.626 -- to sound a bit ...
2
votes
1answer
274 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
1answer
379 views

Channel vocoder using FFT - what to do about DC Component and Nyquist frequency?

I am trying to implement a channel vocoder using the iOS Accelerate vDSP FFT algorithms. I am having trouble figuring out how to treat the DC component and Nyquist frequency. The modulator and ...
4
votes
1answer
904 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 ...
1
vote
4answers
1k views

Recognition of a short high frequency sound in low frequency noise (objc/c)

I am currently creating an application which signals readiness to other devices using a high frequency sound. (transmitter): A device will produce a short burst of sound of around 20khz. (receiver): ...
1
vote
2answers
468 views

Is clock-based timing reliable when CPU frequency is variable?

A common way to measure elapsed time is: const clock_t START = clock(); // ... const clock_t END = clock(); double T_ELAPSED = (double)(END - START) / CLOCKS_PER_SEC; I know this is not the best ...
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 ...
0
votes
2answers
634 views

How to generate simple 2D graphics in real time?

For my internship on Brain-Computer Interfacing I need to generate some very fast flickering squares on a CRT monitor (flickering = alternating between two colors). The monitor's refresh rate is 85Hz ...
8
votes
9answers
3k views

Finding Frequency of numbers in a given group of numbers

Suppose we have a vector/array in C++ and we wish to count which of these N elements has maximum repetitive occurrences and output the highest count. Which algorithm is best suited for this job. ...