Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

x = rand((7, 10))
CI = CartesianIndices((7, 10))

for i in eachindex(x)
    r = CI[i][1]
    c = CI[i][2]
    @assert x[i] == x[r, c]
end

This notebook was generated using Literate.jl.