We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
name
DimArray
similar
Currently, you can do
a = zeros(X(1:3), Y(1:2), name="hi") # prints ╭────────────────────────────╮ │ 3×2 DimArray{Float64,2} hi │ ├────────────────────────────┴──────────────────── dims ┐ ↓ X Sampled{Int64} 1:3 ForwardOrdered Regular Points, → Y Sampled{Int64} 1:2 ForwardOrdered Regular Points └───────────────────────────────────────────────────────┘ ↓ → 1 2 1 0.0 0.0 2 0.0 0.0 3 0.0 0.0
but not
similar(a, name="hello")
maybe there's other instances too that I can track down and patch. I'll try and add a PR if this seems reasonable.
The text was updated successfully, but these errors were encountered:
Ah maybe similar missed out on keywords back then, most other constructor methods e.g. rand/fill got them.
Feel free to add them.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Currently, you can do
but not
maybe there's other instances too that I can track down and patch. I'll try and add a PR if this seems reasonable.
The text was updated successfully, but these errors were encountered: