Suppose we have matrix of Taylor1s generated as follows and we want to compute its inverse:
using LinearAlgebra, TaylorSeries
t = Taylor1(15)
M = diagm(rand(3)) .* one(t)
inv_M = inv(M)
I would expect every element of both M and inv_M to have the same order as t; however, when running the code above I noticed that two elements of inv_M have order 0.
@lbenet Can you reproduce this? If so, is this an inconsistency?
Suppose we have matrix of
Taylor1s generated as follows and we want to compute its inverse:I would expect every element of both
Mandinv_Mto have the same order ast; however, when running the code above I noticed that two elements ofinv_Mhave order 0.@lbenet Can you reproduce this? If so, is this an inconsistency?