-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Matrices being transposed #7
Comments
Could you give code with the example you used? It may be as simple a fix as adding a transpose. |
Sure, I think this is the simplest demonstration:
copy pasting that into Mathematica for example as
shows the matrix transposed. In terms of a fix, that is precisely what I have done for my code, just add a |
Good catch. I pushed a change to ensure the matrix is converted in row-major order. It won't be any less efficient than before. |
Hi again, I'm sorry to be setting up yet another issue but I think this one is likely directly related to this package. I'm using the package to symbolically solve for eigenvalues of a matrix of Symbolics values using the "Eigensystem" wolfram command and I have noticed that the solutions returned are incorrect and I'm pretty sure correspond to the eigensystem of the matrix transpose. I suspect this has to do with julia using column major, as when I do the same call on the transpose of the matrix I get exactly the same solutions as mathematica reports in its own gui.
The text was updated successfully, but these errors were encountered: