Skip to content
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

replace findn(A) with findall(!iszero, A) #83

Open
stevengj opened this issue Sep 13, 2022 · 0 comments
Open

replace findn(A) with findall(!iszero, A) #83

stevengj opened this issue Sep 13, 2022 · 0 comments

Comments

@stevengj
Copy link

I notice that you are still using findn, which was deprecated in Julia 0.7 and removed in Julia 1.0 (JuliaLang/julia#25532) here:

is, js = findn(weights)

points = hcat( findn(ones(s,s,s))... );

You probably want to replace this with findall(!iszero, A), noting that findall returns a single array of CartesianIndex rather than two I, J arrays.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant