ironcalc_base 0.7.1

Open source spreadsheet engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Example file creating testing cases for BesselI

using Nemo

CC = AcbField(100)

values = [1, 2, 3, -2, 5, 30, 2e-8]

for value in values
    y_acb = besseli(CC(1), CC(value))
    real64 = convert(Float64, real(y_acb))
    im64 = convert(Float64, real(y_acb))
    println("(", value, ", ", real64, "),")
end