I'm in a bit of a pickle:
I try to plot a graph of a simple function, and for some reason unknown to me, it is drawn blank even though evaluation of the function at specific points returns the required values. My code is as follows:
A = 0.1;
B = 0.11;
CParam[x_] := BesselK[2, A/x] BesselI[0, B/x] + BesselI[2, A/x] BesselK[0, B/x];
Plot[Log[Log[-CParam'[x]]], {x, 10^-8, 10^-5}]
However, typing {Log[Log[-CParam'[10^-5]]], Log[Log[-CParam'[10^-6]]],
Log[Log[-CParam'[10^-7]]], Log[Log[-CParam'[10^-8]]]} returns {6.91618835667271168, 9.211416996515317434, 11.5130562034263446895,
13.81552593513862411174}.
Why doesn't Plot work properly?
Thanks


LogLinearPlot, and try manually specifyingPlotRange– george2079 Oct 24 '16 at 11:25Plot[Evaluate[expression],..]because of the derivative – george2079 Oct 24 '16 at 11:30ListLinePlot@ Table[Log[Log[-CParam'[x]]], {x, Subdivide[10^-8, 10^-5, 100]}](I'm on V11.0.0.) – Michael E2 Oct 24 '16 at 12:31"10.4.1 for Linux x86 (64-bit) (April 11, 2016)". – corey979 Oct 24 '16 at 13:29