-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Description
If you want to get a readable output of large arrays in Julia it's very convenient to use the display() function. You could use show(), but you won't be able to make much sense of a 1000 x 1000 element matrix that way. There is a macro @show, but there is none for the display() function.
It would make sense in my opinion to add a macro that could look something like this:
macro display(val)
display(val);println()
end
Metadata
Metadata
Assignees
Labels
No labels