5 lines
146 B
Text
5 lines
146 B
Text
using LinearAlgebra
|
|
fullI3 = Matrix{Float64}(I, 3, 3)
|
|
fullI3 = Array{Float64}(I, 3, 3)
|
|
fullI3 = Array{Float64,2}(I, 3, 3)
|
|
fullI3 = zeros(3,3) + I
|