Re: [sage-devel] Incorrect parameter passed to eigenvalue

2021-04-20 Thread Vincent Delecroix
That is perfect! Thanks. Vincent Le 20/04/2021 à 07:16, Shashank Balaji a écrit : Dear Vincent, Here is the link to the ticket: https://trac.sagemath.org/ticket/31700#ticket Apologies if the ticket does not conform to the guidelines. I have tried my best to conform. I am new to the Sage commu

Re: [sage-devel] Incorrect parameter passed to eigenvalue

2021-04-20 Thread Shashank Balaji
Dear Vincent, Here is the link to the ticket: https://trac.sagemath.org/ticket/31700#ticket Apologies if the ticket does not conform to the guidelines. I have tried my best to conform. I am new to the Sage community :D Best, Shashank On Tuesday, April 20, 2021 at 1:57:43 AM UTC+5:30 vdelecr

Re: [sage-devel] Incorrect parameter passed to eigenvalue

2021-04-19 Thread Vincent Delecroix
Dear Shashank, Thanks for your report. This is indeed a bug in matrix_symbolic_dense.pyx. Please post the url of the ticket in this thread. Note that on sage 9.3 this will not be a problem on this particular example since the number ``i`` will not belong anymore to the symbolic ring. sage: pare

[sage-devel] Incorrect parameter passed to eigenvalue

2021-04-19 Thread Shashank Balaji
Hello, I am using version 9.2 of Sage. I encountered the following error: *Input*: m = matrix([[1 - 2 * i, 2, 3 - i], [0, -1 + i, 4], [3, i, -1]]) t = linear_transformation(m) t.eigenvalues() *Output*: TypeError Traceback (most recent call last) in > 1 t.ei