Discussion:
Bessel functions
Ether Jones
2018-11-09 15:51:55 UTC
Permalink
I am using GNU Octave, version 3.6.4
configured for "i686-pc-mingw32"

Can someone please post a very simple example
how to access J0() and J1() Bessel functions?

I did some searching, but all the matches I
found were from 21 years ago (1997).

Thank you.



--
Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html
Primoz Peterlin
2018-11-09 16:00:13 UTC
Permalink
Bessel functions didn't really change that much during the last 21 years. :)

z = (0:0.2:1)';
besselj(0,z)
besselj(1,z)

Best regards,
PrimoÅŸ
Post by Ether Jones
I am using GNU Octave, version 3.6.4
configured for "i686-pc-mingw32"
Can someone please post a very simple example
how to access J0() and J1() Bessel functions?
I did some searching, but all the matches I
found were from 21 years ago (1997).
Thank you.
--
http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html
Loading...