Hi,
I’m trying to relearn linear algebra for the basics of deep-learning. I also want to bootstrap myself into using Symbolics.jl at the same time. I used to enjoy owning MuMath back in the day.
I have basic 2 x 2 matrices hand-loaded with Symbolics variables, and they are multiplying, and displaying nicely.
I would like to know how to construct identity matrices in a conventional manner. I made a 2x2 Identity using Matrix{Float64}(I,2,2)
This gives the appearance of working, but I don’t feel right about constraining the identity matrix to Float64
.
How should I properly make a symbolic identity matrix?