I have many variables and matrices that I would like to call with a prime, like:
xprime, yprime, rprime and so on.
I believe that I can't use x', y', r' etc. as it is for instance used for matrices transposed.
julia> x' = 5
ERROR: syntax: invalid assignment location "x'" around REPL[2]:1
Stacktrace:
[1] top-level scope at REPL[2]:1
julia> x = [1,2]
2-element Array{Int64,1}:
1
2
julia> x'
1×2 LinearAlgebra.Adjoint{Int64,Array{Int64,1}}:
1 2
I am opened to any suggestion of a more convenient way than xprime, yprime etc. which is pretty long and ugly I think.