-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Special functions needed #80
Comments
We have sinc, though I had to add a constant factor of pi (sinc(x) = sin(x*pi)/x)) because that is what Julia base calculates. We also have complex erfc and erf so for the Fadeeva function I just need to add the scaling factor |
Julia defines sinc as the normalized version sing(x*pi)/(x*pi). I prefer the unnormalized version but oh well. |
We could have the unnormalized version as "sa" for now https://en.wikipedia.org/wiki/Sinc_function I found on some forums / github issues that people want to change this but unfortunately it being a breaking change would have to wait until Julia 2.0 |
How about |
Some special functions that will be needed:
PTC might have code for some of this.
The text was updated successfully, but these errors were encountered: