Hello, i try plot next graphic for range
The problem is that the picture looks too discrete. I built it with a modified range and it looked smoother. Why is that?
I0range = range( -1.509460, -1.509490, length = 5000 )
f = Figure(resolution = (1200, 400))
axis = Axis(f[1, 1], xlabel = L"I_0", ylabel = L"\Lambda", xlabelsize = 35, ylabelsize = 35,
xticklabelsize = 25,yticklabelsize = 25 )
lines!(axis, I0range, Λs[:, 1], color = :red, linewidth = 1.0)
lines!(axis, I0range, Λs[:, 2], color = :green, linewidth = 1.0)
f
I0range = range( -1.509400, -1.509490, length = 5000 )
f = Figure(resolution = (1200, 400))
axis = Axis(f[1, 1], xlabel = L"I_0", ylabel = L"\Lambda", xlabelsize = 35, ylabelsize = 35,
xticklabelsize = 25,yticklabelsize = 25 )
lines!(axis, I0range, Λs[:, 1], color = :red, linewidth = 1.0)
lines!(axis, I0range, Λs[:, 2], color = :green, linewidth = 1.0)
f