Hi everyone !
Posting here for the first time.
I am a part-time independent code developer, and in some aspect of my present project, I might have bitten more math than I can chew. I took advanced math as a teenager, but that was decades ago.
Here's the thing: I'm trying to produce a cyclic function that would be like a sine, except with steeper slopes around Y=0 and then more flattened at the peaks. And symmetrical the way a sine is.
I'm coding in a rudimentary language, and the arithmetic tools at my disposal, besides +-*/, are:
sine, cosine, tangent, arcsine, arccosine, arctangent, modulo, x^y (where both x and y are real), e^x, log (x), and absolute value.
Is there a way to the desired result using these operations?
Posting here for the first time.
I am a part-time independent code developer, and in some aspect of my present project, I might have bitten more math than I can chew. I took advanced math as a teenager, but that was decades ago.
Here's the thing: I'm trying to produce a cyclic function that would be like a sine, except with steeper slopes around Y=0 and then more flattened at the peaks. And symmetrical the way a sine is.
I'm coding in a rudimentary language, and the arithmetic tools at my disposal, besides +-*/, are:
sine, cosine, tangent, arcsine, arccosine, arctangent, modulo, x^y (where both x and y are real), e^x, log (x), and absolute value.
Is there a way to the desired result using these operations?
Last edited: