-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pcolor(): Warning: The default strides(a::AbstractArray)
implementation is deprecated .......
#380
Comments
same warnings for
|
To avoid the above mentioned warnings a workaround is (see example below) to convert the transposed array B of type: (Transpose{Float64,Array{Float64,2}}) to an array of type: Array{Float64,2}.
julia> using PyPlot julia> A = rand(1:8,8,8)*1.0; julia> B = transpose(A); julia> C = convert(Array{Float64,2},B); julia> figure("A") julia> pcolor(A) julia> figure("C") julia> pcolor(C) julia> figure("B") julia> pcolor(B) The warning occurs only once. julia> figure("B1") julia> pcolor(B) julia> Running the same command pcolor(B) again no warning appears anymore (why?). |
(why?) |
Still persists (see JuliaLang/julia#25321 (comment) for solution). It is very prevalent when using |
I‘ve got the following warning applying pcolor():
with
The text was updated successfully, but these errors were encountered: