The sine tag has no wiki summary.
5
votes
2answers
173 views
Compressing a sinewave table
I have a large array with 1024 entries that have 7 bit values in range(14, 86)
This means there are multiple range of indices that have the same value.
For example,
consider the index range 741 to ...
4
votes
3answers
76 views
Cosine in floating point
I am trying to implement the cosine and sine functions in floating point (but I have no floating point hardware).
Since my processor has no floating-point hardware, nor instructions, I have already ...
4
votes
1answer
976 views
Generate Sine Wave between 10 and 20000Hz using SoundPool
I attempted to generate a Sine Wave using AudioTrack initially. The result was not satisfactory. I then moved to the Soundpool class. I used Audacity to create audiofiles of 1 second and then modified ...
3
votes
4answers
152 views
sine function on 16-bit microcontroller
I need to generate a sine wave to fill a char table of size 1024. The word size on the microcontroller is 16-bit and floating-point operations are not available.
The sine wave itself will oscillate ...
3
votes
2answers
183 views
what's wrong with my VHDL sine function gen?
library IEEE;
use IEEE.MATH_REAL.ALL;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.NUMERIC_STD.ALL;
entity SineGen is
Port (clock : in std_logic;
...
3
votes
1answer
310 views
How to calculate sine, cosine in Less?
Trying to convert the following php method to use in a .less stylesheet:
<?php
$deg2radians = pi() * 2 / 360;
$rad = $degree * $deg2radians;
$costheta = cos($rad);
$sintheta = ...
3
votes
1answer
539 views
Interpolate x, y, z coordinates on a sphere using points from two spin vectors?
I want to plot 3D points in real time that lie upon the surface of a unit sphere (r = 1).
There are two spin vectors at work here. One vector rotates around the Y axis, it's X and Z values are ...
2
votes
1answer
28 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 ...
2
votes
4answers
131 views
Sine function using Taylor expansion (C Programming)
Here is the question..
This is what I've done so far,
#include <stdio.h>
#include <math.h>
long int factorial(int m)
{
if (m==0 || m==1) return (1);
else return ...
2
votes
4answers
119 views
Javascript sin function issue
I have a problem with Math.sin. I thought it would output the sinus of the given integer. So I tried Math.sin(30) and my output was -0.9880316240928618 and then I checked with my calculator and it was ...
1
vote
3answers
67 views
Need help in Math to write oscillating iterator in either CoffeeScript or Javascript
Basically, I want a function I can call which lets me iterate in a bouncing-loop between a range of numbers by a specified increment. I've tried way complex solutions with many conditionals but it ...
1
vote
1answer
39 views
Why isn't this code playing any sound?
I'm trying to get this to play a sine wave at 440 hz.
The constructor gets called, and no errors appear.
generate() makes an array of doubles for the sound data, and sends it to process() which makes ...
1
vote
2answers
232 views
Sine Wave Sound Generator in Java
What's the simplest way to generate a sine wave sound at any frequency in Java?
A sample size more than 2 bytes would help, but it doesn't really matter.
Thanks
1
vote
6answers
54 views
About Sines in Programming
I am trying to understand trigonometry and the short answer is that I do not.
I drew a little triangle to mess around with and I asked myself the question, "If I know the length of the hypotenuse and ...
1
vote
0answers
59 views
Apply decay envelope to waveform without multiplication
I'm trying to apply a decay envelope to a sinusoidal waveform using Verilog. Hardware constraints prevent use of multiplication to simply multiply by the envelope. The sine values and envelope values, ...
1
vote
1answer
158 views
NAudio - How to send sine wave only to one audio channel on jack
I took an existing mono (non-stereo) NAudio example for Visual Studio 2010 from:
http://mark-dot-net.blogspot.com/2009/10/playback-of-sine-wave-in-naudio.html
and changed it to have two channel ...
1
vote
1answer
135 views
help using SDL library to play a raw sine wave generated using sinf function
I am trying to generate sound tones of various frequencies, by creating sample data using the sine function and playing using SDL.
I am using
buffer[sample] = 32767 * sinf( 2 * PI * sample * ...
1
vote
2answers
95 views
Calculating angle when sine is known
How can I calculate the angle in degrees when Math.Sin is known? Asine will work? and multiply it by 180 and divide by pi?
1
vote
4answers
299 views
Algorithm for creating a circular path around a center mass?
I am attempting to simply make objects orbit around a center point, e.g.
The green and blue objects represent objects which should keep their distance to the center point, while rotating, based on ...
1
vote
3answers
346 views
Math.Cos & Math.Sin in C#
I'm trying something that I thought should be reasonably simple. I have an angle, a position and a distance and I want to find the X,Y co-ordinates from this information.
With an example input of 90 ...
1
vote
2answers
649 views
Sine wave drawing on iOS
I want to draw a sine wave with changing amplitude in a custom UIView. The value for the amplitude is changed through a timer every 1/30s. The sine wave itself and the animation should look smooth.
At ...
1
vote
2answers
573 views
C# NAudio playing sine wave for x milliseconds
i am using NAudio to play a sinewave of a given freq as in this post:
http://mark-dot-net.blogspot.com/2009/10/playback-of-sine-wave-in-naudio.html
I just want the sound to play() for x milliseconds, ...
1
vote
2answers
999 views
C++ - Play back a tone generated from a sinusoidal wave
Hey everyone, I'm currently trying to figure out how to play back a tone I have generated using a sinusoidal wave.
Here's my code:
#include <iostream>
#include <OpenAL/al.h>
#include ...
1
vote
2answers
117 views
__CIasin and Is Arcsine much slower than sine in .NET?
I've been running som eprofile tests of a slow area of code. This is with Visual Studio 2008 and .NET 2 (fully patched). About 32% of my computation is used by the Haversine formula. This requires two ...
1
vote
4answers
1k views
How to use a Sine / Cosine wave to return an oscillating number
I'm new to Java programming, I am programming Java 1.6 with Android.
I have a simple function that makes a number go up and down between 0 and 200. I would like to put this into a Sine function but ...
0
votes
2answers
388 views
Creating a Triangle wave from a Sine wave in C++
I am having trouble finding out how to form a triangle (not sawtooth) wave from a sine wave.
I understand how to create it for a Square wave:
if( sineValue >= 0 )
value = amp;
else
...
0
votes
1answer
197 views
Is Real time pitch shifting possible with AudioUnit?
I am playing two sine wave tone generated on the fly with the help of AudioUnit. I need to give the user a UISlider which helps him to change the pitch of the tone on the fly. I am stuck in setting ...
0
votes
2answers
302 views
Create Vertical Sine wave
I am developing a game which uses sine wave.
I made use of the horizontal sin wave with the following example
http://www.roseindia.net/java/example/java/swing/create_sine_wave.shtml
How do create a ...
0
votes
1answer
115 views
Synthesizing sampled sound
I am trying to convert an array of integers into a sound representation. Currently, I'm playing each value as an individual short tone but I would like to create a single sampled wave from the ...
0
votes
3answers
117 views
How would I change an equation to modulate a number on a line, to one that that modulates on a sine curve?
I'm trying to modulate an alpha value in a Java application I'm building on Android. Right now it goes like this:
if (goingUp) {
newAlpha = oldAlpha + rateOfChange;
if (newAlpha > ...
0
votes
3answers
185 views
Help me re-understand how to use sine to oscillate a graphic in (Objective) C
I feel silly asking this but I seem to have forgotten how to use sine effectively.
I'm working on an iPad app so I'm in ObjectiveC, and I'm just trying to get a UIView to oscillate slowly. Just using ...
0
votes
1answer
56 views
MDX Sine Function
Can I use the sine function within MDX? I would like to know the sine of a measure.
0
votes
1answer
160 views
Realistic page turn speed
I have written some page turning software simulating a magazine. Currently the speed of the page turning is linear, and I want to make it more realistic with acceleration and deceleration.
At the ...
0
votes
1answer
439 views
Create a Sin wave line with Processing
Hey everybody, first post here, and probably an easy one.
I've got the code from Processing's reference site:
float a = 0.0;
float inc = TWO_PI/25.0;
for(int i=0; i<100; i=i+4) {
line(i, 50, ...