I have a function ( lets call it test(M) ), that "spits out" only BigFloats, like shown below.
test(100)
22.48487818538224586950434052086250350042005040604872584710165219826379165499864
I would like to plot this function. Howver, it seems that this doesn't work for big Floats.
I even tried to use round(Int8, test(x))
in order to make the results smaller, but it still didn't work.
using Plots
M = 1:10
plot(test.(M), xaxis=:log)