We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 796b531 commit 6e2ff84Copy full SHA for 6e2ff84
README.md
@@ -36,7 +36,16 @@ julia> AL = tril!(collect(A))
36
`AL` requires the same amount of storage as does `A` even though there are only 21 potential non-zeros in `AL`.
37
The RFP version of the lower triangular matrix
38
```julia
39
- julia> ArfpL = Int.(TriangularRFP(float.(A), :L))
+ julia> ArfpL = TriangularRFP(float.(A), :L)
40
+6×6 TriangularRFP{Float64}:
41
+ 1.0 0.0 0.0 0.0 0.0 0.0
42
+ 2.0 8.0 0.0 0.0 0.0 0.0
43
+ 3.0 9.0 15.0 0.0 0.0 0.0
44
+ 4.0 10.0 16.0 22.0 0.0 0.0
45
+ 5.0 11.0 17.0 23.0 29.0 0.0
46
+ 6.0 12.0 18.0 24.0 30.0 36.0
47
+
48
+julia> Int.(ArfpL)
49
6×6 Matrix{Int64}:
50
1 0 0 0 0 0
51
2 8 0 0 0 0
0 commit comments