RosettaCodeData/Task/Identity-matrix/Julia/identity-matrix-3.julia
2023-07-01 13:44:08 -04:00

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