Skip to content

Commit a223242

Browse files
committed
When printing matrices, replace zeros by dots
This makes it easier to read many matrices, especially those which are relatively sparse. Before: julia> matrix(QQ, [42 0 0; 0 42 0; 0 0 42]) [42//1 0//1 0//1] [ 0//1 42//1 0//1] [ 0//1 0//1 42//1] After: julia> matrix(QQ, [42 0 0; 0 42 0; 0 0 42]) [42//1 . .] [ . 42//1 .] [ . . 42//1]
1 parent b0c592c commit a223242

File tree

7 files changed

+146
-145
lines changed

7 files changed

+146
-145
lines changed

0 commit comments

Comments
 (0)