using RowEchelon
A=[1 2; 3 4]
rref(transpose(A))
throws error
I donāt know what this is but try
rref(collect(transpose(A)))
Thanks!
Itās working, but maybe it isnāt a good solution. Some information what you try to do could result in more specific and better solutions.
The type of transpose(A) is not Array
Indeed it isnāt.
It should work on RowEchelon v0.2.1 now thanks to @stevengjās PR