You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm seeing loads of these (my terminal's overflowing with warnings...:)):
WARNING: [a,b] concatenation is deprecated; use [a;b] instead
in depwarn at /Applications/Julia-0.4.0.app/Contents/Resources/julia/lib/julia/sys.dylib
in oldstyle_vcat_warning at /Applications/Julia-0.4.0.app/Contents/Resources/julia/lib/julia/sys.dylib
in diverging_palette at /Users/cormullion/.julia/v0.4/Colors/src/colormaps.jl:234
in include at /Applications/Julia-0.4.0.app/Contents/Resources/julia/lib/julia/sys.dylib
in include_from_node1 at /Applications/Julia-0.4.0.app/Contents/Resources/julia/lib/julia/sys.dylib
in include at /Applications/Julia-0.4.0.app/Contents/Resources/julia/lib/julia/sys.dylib
in include_from_node1 at /Applications/Julia-0.4.0.app/Contents/Resources/julia/lib/julia/sys.dylib
I think it's here:
if isodd(N)
midcol = weighted_color_mean(0.5, pal1[end], pal2[1])
return [pal1[1:end-1]; midcol; pal2[2:end]]
else
return [pal1[1:end-1]; pal2[2:end]]
end
What's the fix - return collect(pal1[1:end-1]; midcol; pal2[2:end])?
The text was updated successfully, but these errors were encountered:
I'm seeing loads of these (my terminal's overflowing with warnings...:)):
I think it's here:
What's the fix -
return collect(pal1[1:end-1]; midcol; pal2[2:end])
?The text was updated successfully, but these errors were encountered: