4 questions from the last 30 days
-5
votes
0
answers
95
views
something went wrong in my matrix program of java [duplicate]
I made a matrix program in java which calculate the all similar matrix with the same determinant (there are a lot, I began for forty) .
but I have a problem: In the class where I do the algorithm for ...
3
votes
1
answer
55
views
Why is Matrix Multiplication Slow During Pseudoinverse Calculation?
X, Z, YT = sp.linalg.svds(W, k=353, which='LM')
U = YT.transpose() @ np.diag(Z) @ X.transpose()
Where W is a sparse CSR matrix of size (124956, 124956). The matrix multiplication to compute U takes a ...
0
votes
0
answers
80
views
Rewriting a n-dimensional matrix of dot products as a matrix multiplication
This is a crosspost from the Math Exchange forum, it seems to me that this question can be approached in two different ways so I am curious about different approaches.
https://math.stackexchange.com/...
1
vote
1
answer
40
views
Why doesn't Symbolics.expand work in matrices?
I'm working with Julia's Symbolics.jl and I'm trying to compare two symbolic matrices.
However, since Symbolics.isequal function checks for structural- instead of mathematical-equivalence it is ...