vote up 10 vote down star
5

In a similar way that modulo generates a sawtooth wave. It doesn't have to be continuous.

here is what i mean:

int m = 10;
int x = 0;
int i = 0;
while (i < m*3) {
	printf("%d ", x);
	x++;
	x = x % m;
	i++;
}

generates a sequence 0..9, three times which looks like this:

sawtooth wave graph

note that the slope on the right side of the peak is just a graphing artifact

The one-liner in this case is x = i++ % m


What I want is this:

triangle wave graph

If you know one-liners for the other wave forms (sine, square), that would be good to know as well.

Update: everyone's answers have been very helpful and I have a follow-up question.

What would be added to the triangle wave function to make the slope of the lines curve in or out like this:

bulging waveforms

Thanks everyone, your varied answers helped me see the problem from a larger perspective. Special thanks to Noldorin for his take on extending the equation to quadratic curves.

flag

why do they have to be "one-liners"? – Neil Butterworth Jul 2 at 10:25
I think you mean x = x++ % m? – Noldorin Jul 2 at 10:25
@Neil Because I know how to do them using for loops and if statements. I want a more elegant way to do these sorts of things. @Noldorin Newbie learning something – willc2 Jul 2 at 10:35
@willc2: I've fixed that in your question now. Hope you don't mind. – Noldorin Jul 2 at 10:41
(Looking at your code again, I believe you actually mean x = i++ % m.) – Noldorin Jul 2 at 10:42

4 Answers

vote up 2 vote down check
x = m - abs(i % (2*m) - m)
link|flag
vote up 0 vote down

Try this:

x = m - abs(m - 2*(i++ % m))
link|flag
vote up 2 vote down
y = abs( amplitude - x % (2*amplitude) )

Changing the wavelength just needs a factor for x.

Edit: What I call amplitude is actually not the amplitude, but the maximum value (i.e. 5 if the curve oscillates betwen 0 and 5). The amplitude in the mathematical sense is half of that. But you get the point.

link|flag
this results in a "V" wave; you'd need to add "y = m - y" to get a triangle wave – bubaker Jul 2 at 10:58
A wave is usually considered infinite, making a "V wave" and a triangle wave essentially identical. But you're right in so far that if you want f(0) = 0, you have to do a shift. – balpha Jul 2 at 11:09
vote up 22 vote down

Triangular Wave

y = abs((x++ % 6) - 3);

This gives a triangular wave of period 6, oscillating between 3 and 0.

Square Wave

y = (x++ % 6) < 3 ? 3 : 0;

This gives a regular square wave of period 6, oscillating between 3 and 0.

Sine Wave

y = 3 * sin((float)x / 10);

This gives a sine wave of period 20 pi, oscillating between 3 and -3.


Update:

Curvy Triangular Wave

To get a variation of the triangular wave that has curves rather than straight lines, you just need to introduce an exponent into the equation to make it quadratic.

Concave curves (i.e. x^2 shape):

y = pow(abs((x++ % 6) - 3), 2.0);

Concave curves (i.e. sqrt(x) shape):

y = pow(abs((x++ % 6) - 3), 0.5);

Alternatively to using the pow function, you could simply define a square function and use the sqrt function in math.h, which would probably improve performance a bit.

Also, if you want to make the curves steeper/shallower, just try changing the indices.


In all of these cases you should easily be able to adjust constants and add scaling factors in the right places to give variations of the given waveforms (different periods, ampltiudes, asymmetries, etc.).

link|flag
Note that my x does not correspond to your x in the question. The x I used here represents the conventional value along the x-axis, and similarly y represents the value along the y-axis. The x here seems to be the i in your question. – Noldorin Jul 2 at 10:43
I could add these waveforms to get more complicated ones as well, yes? – willc2 Jul 2 at 11:16
Doesn't that triangular wave oscillate between 3 and 0? – Keith Smith Jul 2 at 11:18
@willc2: Yes, of course. :) If you're wondering how to get another specific waveform, just ask, and I can suggest something - these provide good starting blocks however. – Noldorin Jul 2 at 12:01
1  
nice answer. a pity that this isn't the accepted one, imho – Johannes Schaub - litb Jul 8 at 0:33
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.