-
-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Logarithmic and exponential functions #552
Comments
|
@bgold-cosmos Thank you for your answer. Do you know where I can find information on how to use them in Tidal? |
I don't know if there's explicit documentation, but you can use
should just work, although Haskell's
|
@bgold-cosmos Yes, this may be it. |
Suggesting the implementation of logarithmic and exponential functions into Tidal.
log function prototype
log x base
Base could be optional, with e being the default value.
Example results:
log 1000 == 6.907755278982137
log 1000 10 == 3
log 1000 2 == 9.965784284662087
etc.
exp function prototype
exp x
Example result:
exp 2 == 7.38905609893065
The text was updated successfully, but these errors were encountered: