The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
58 views

Java Fast Sine Wave Tone

I'm looking for an example on how to generate and play a Sine Audio Wave in Java. I've found many other solutions on StackOverflow and around the web, but none have been able to produce and play a ...
1
vote
1answer
39 views

Sum of sine data fitting with mathematica

Hy everyones, I've a little problem with a mathematica script which I need for fitting data points with a sum of 3 sine functions : fit = NonlinearModelFit[Data,a1*Sin[b1*x + c1] + a2*Sin[b2*x + ...
0
votes
0answers
61 views

Sine wave (phasing?) issue. In way over my novice head

I am working on a Processing patch that receives midi messages (using an external library called midiBus) and visualises their pitches, lengths and amplitudes as sine wave objects that float around ...
0
votes
0answers
19 views

“Wavy” UIBezierPath

I have a UIBezierPath. I have an algorithm that gives me the points. What I'd like to do is take this path, arbitrarily anything and change it into a "wavy path." Perhaps a sine wave. However, of ...
1
vote
2answers
84 views

Blank window in java

I am writing a java program that can graph a function on a created window. Everything was working until I started messing with cosine/sine. My program compiles but for some reason I get a blank window ...
-1
votes
4answers
247 views

Java sine and cosine

Hello I am trying to create a java program that allows you to graph an equation and its been working well so far until I wanted it to graph cosine and sine functions. I am confused on how I can do ...
0
votes
1answer
395 views

Standard FFT classes/library for Android?

I plan to "visualise" some graphical data via audio. To make it short: I get a bunch of frequencies and related amplitude values out of some image data. This frequency/amplitude table with - lets say ...
0
votes
2answers
53 views

JSyn: Sine Wave on two channels

I have figured the problem out before posting this question. Nevertheless I think this might help someone else, so I am posting it anyway. If anyone knows a better or more elegant way to do this, ...
-1
votes
1answer
182 views

Looking for good NAudio .net tutorials

As the title suggests, i cant seem to find much on NAudio and .NEt I have tried taking the c# tutorials and converting them to .NET but im not having much luck. If anyone has any good tutorials on ...
0
votes
0answers
73 views

How to find time, based on acceleration & deceleration points of sine curve?

I want to find time using sine curve based on acceleration & deceleration points. I know frequency & distance traveled. I want to find out the time required for each phase means time at which ...
0
votes
1answer
153 views

Python:Pygame: How to animate a ball to move in a sin() like pattern?

How would you make a ball move in a repetitive wavey pattern just like a sin() graph does?
0
votes
1answer
74 views

strange Math.sin behaviour

I'm making a program that plays a sine wave varying in pitch and I'm dealing with something that i've never seen before: the program should play a sine wave from 220 hz to 0 hz, and I can see the ...
3
votes
2answers
72 views

How can I use .mousemove to fade a background image according to distance from center page?

I have this function set up if (window.innerWidth && window.innerHeight) { var winW = window.innerWidth; } var xM = winW/180; var axis = 0; $(window).bind('mousemove',function(e){ var ...
-5
votes
2answers
186 views

Writing a function that calculates sine for inputted number of terms. MATLAB [closed]

i cannot for the life of my figure out how to make a function to do this in MATLAB.. i am completely new to MATLAB and i really dont know where to start. i know how to write a function to calculate ...
0
votes
0answers
29 views

FSINCOS on a GPU

I need to obtain both sines and cosines of a sequence of arguments as fast as possibile. I read carefully the discussion What is the fastest way to compute sin and cos together? where I noticed that ...
0
votes
3answers
90 views

After a few seconds, a method takes longer to execute

I have this method: public double sineWave(double t) { return amplitude==0?0:Math.sin(t * frequency * Math.PI*2 + phase) * amplitude; } It is called by another method in another class to ...
1
vote
1answer
197 views

octave fft of sinus function

I need to use FFT function on sinus. this is my sinus function: octave:1> t=(0:1/16000:1); octave:2> A=2; octave:3> x=A*sin(2*pi*80*t); this is how I try to make fft: octave:60> ...
0
votes
1answer
43 views

Compute cosines and sines of a sequence of angles

I should create a program which computes the cosines and sines of a sequence of angles k*α, where k is a growing natural number (i.e., 0, 1, 2,...) and α is a constant angle which lies between 0 and ...
1
vote
0answers
94 views

sine with fixed point input

I would like to know if there exists an implementation of the sine/cosine function that takes a fixed point input. I would prefer such an implementation for error reduction purposes. A simple version ...
1
vote
4answers
302 views

Shouldn't this javascript animation produce a sine wave movement?

I am doing a small JavaScript animation hoping that the little div can move along a sine wave, and for the moment the horizontal path works fine (just straight line). I am almost sure that my math ...
-1
votes
1answer
314 views

Detecting the frequency /period of sine wave [closed]

I just need some guidance as to how to detect the frequency from a sine wave. I generated the sinewave via a DtoA converter. Now, I'm putting that signal back through an AtoD to monitor and verify the ...
1
vote
1answer
157 views

I'm looking for a sine wave audio generator for actionscript3

I've been searching for a sine wave generator for actionscript3. I found SION ( https://sites.google.com/site/sioncenter/ ) but it doesn't seem to accept frequency in Hz as input, it only accepts ...
1
vote
4answers
529 views

How to look up sine of different frequencies from a fixed sized lookup table?

I am sampling a sine wave at 48 KHz, the frequency range of my sine wave can vary from 0 to 20000 Hz with a step of about 100 Hz. I am using a lookup table approach. So I generate 4096 samples for a ...
6
votes
6answers
276 views

Interview : Hash function: sine function

I was asked this interview question. I am not sure what the correct answer for it is (and the reasoning behind the answer): Is sin(x) a good hash function?
0
votes
1answer
97 views

In Python, how do I make it so only one item of the list is printed out?

This is using the Taylor series to find the value of the sine of an angle between -1 and +1, but what I'm trying to do is get the value of every degree, print it, go to the next degree, then print, ...
2
votes
2answers
409 views

Playing a sine wave of varying pitch

I have a (pretty simple) piece of code I've thrown together which plays a sine wave of a specific frequency and plays it - it works no problem: public class Sine { private static final int ...
0
votes
1answer
251 views

How to create a Sine Waves using Core Plot?

I am able to create a Wave Form using Core Plot in my iPhone app but its not like Sine Wave. Here is the link on which you can see how the waves are generated but I want to show these waves in Sine ...
2
votes
1answer
150 views

Audio Units samples value range

I wanted to know what kind of values Audio Units expects in the buffer. Right now when I calculate the samples for a sine wave on one single frequency with amplitude 0.5 everything works fine. But ...
0
votes
0answers
393 views

Drawing a continuous straight/sine wave in Visual C++

The problem is is not drawing a line or a sine. I have written the code for that(see below ) but once the line reaches the end of the picture box it stops. I want it to continue drawing and maybe have ...
0
votes
2answers
629 views

Calculate saw and triangle wave from specific data

I need to calculate a triangle and saw wave but it is a little complicate because of my model and the data I'm able to work with (but maybe I'm just confused). I'm able to calculate my sine wave but ...
0
votes
1answer
345 views

Implementing triangle, sawtooth and reverse sawtooth formulas in program code

I've looked at the formulas for these waves but I can't figure out how to implement them. I was able to figure you the SINE and SQUARE waves: float x = note.frequency / AppSettings::sampleRate; float ...
2
votes
0answers
185 views

Range reduction for trigonometric functions

I'm trying to implement range reduction for trigonometric functions. I found this paper http://www.computer.org/csdl/proceedings/pcspa/2010/4180/00/4180b048-abs.html which talks about using 64-bit ...
0
votes
1answer
42 views

Weird sign issue when computing sine or cosine

I'm trying to write a small program that calculates the sine and cosine of an angle that the user provides in degrees, with 6 decimal places of precision. It goes like this: Input (angle) 90 ...
0
votes
1answer
48 views

VC++ does not show output

I am new to VC++ and its been a few times now, and this is the third program that does not give output even after it is build succesfully. #include <AFXWIN.H> #include <math.h> #define ...
2
votes
1answer
211 views

How to efficiently determine the minimum necessary size of a pre-rendered sine wave audio buffer for looping?

I've written a program that generates a sine-wave at a user-specified frequency, and plays it on a 96kHz audio channel. To save a few CPU cycles I employ the old trick of pre-rendering a short ...
2
votes
3answers
406 views

Sine function in Matlab/C/Java or any other program in digital systems

How does Matlab/C generates Sine wave, I mean do they store the values for every angle ? but if they do then there are infinite values that are needed to be stored.
0
votes
1answer
122 views

Complex math involving detecting Sine patterns [closed]

Hoping to find a math+PHP genius to solve this. One of my clients (a surgeon) wants a web-app tied to his patients' EEG machines that track heartbeats. The data is a live feed in table format ...
3
votes
1answer
538 views

Sine regression PHP

I have a one-dimensional data set in PHP, to be precise, an array with linearly increasing indices (to represent the values on the x-axis, the delta being 1) and corresponding values (representing the ...
3
votes
1answer
428 views

Javascript and Canvas - Animating a Sine wave

So, I have the following code to animate something upwards... it's very basic... SetInterval(function() { particlesY -= 1; }, 10); Then a loop as such: ...
2
votes
2answers
910 views

Recursive Sine function

I'm writing a sine function that has to be recursive. I have written a sine function but am not really sure how to do it recursively. Could someone explain how to get started on this? This is what I ...
1
vote
2answers
317 views

PHP “Maximum execution time”

I'm trying to program my own Sine function implementation for fun but I keep getting : Fatal error: Maximum execution time of 30 seconds exceeded I have a small HTML form where you can enter the ...
0
votes
2answers
129 views

Rotating an image around another?

I am currently developing a game for iphone in which there is a spinning asteroid(which is circular) and an object spinning around the circumference of that asteroid. I have made calculations for the ...
1
vote
1answer
307 views

NAudio Asio and IeeeFloat format

i have tried to get the sine wave example running on an AsioOut, but it sounds more like a distorted square wave. is it possible that the AsioOut only supports PCM formats? the asio .wav file playback ...
-1
votes
2answers
819 views

Sine to radians Objective-C

This part of an app that I am working on, I have the following equation in objective C. All variables are floats. r is a sine of an angle and I would like to convert r to radians when diplayed in the ...
-1
votes
1answer
304 views

OpenGL - sine and cosine waves in jogl (JAVA)

I'm trying to code a sine and a cosine wave to be displayed on my panel. I am trying this in my EventListener class by creating a method drawCurves(). CurvesGLEventListener: package firstAttempt; ...
1
vote
1answer
109 views

limit or extend the number of samples that are played

I'm trying out the code in this example and basically I want to limit the number of samples that are played. Right now once you hit the play button the app plays a tone at the frequency that was set ...
3
votes
2answers
557 views

Playing sine wave for uknown time

Whole day I was looking for some tutorial or piece of code, "just" to play simple sin wave for "infinity" time. I know it's sounds little crazy. But I want to be able to change frequency of tone in ...
3
votes
2answers
471 views

iOS tone generation

I'm looking at this example about sound generation on iOS because I need to do something similar but there's some parts I don't understand and I was hoping someone could help me with that. In this ...
3
votes
2answers
250 views

Why isn't this circle rotating around the correct center?

Jsfiddle: http://jsfiddle.net/yJJs7/ Javascript: function main(){ var centerx=250; var centery=250; var degrees=0; var div=document.getElementById('test'); var move=function(){ ...
2
votes
1answer
209 views

Sine LUT VHDL wont simulate below 800 hz

I made a sine LUT for VHDL, using 256 elements. Im using MIDI input, so values range 8.17Hz (note #0) to 12543.85z (note #127). I have another LUT that calculates how many value must be sent to my ...

1 2