Skip to main content
The 2025 Developer Survey results are in. Explore insights into technology and tools, careers, community and more. View results.
Filter by
Sorted by
Tagged with
-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 ...
Luis Federico Berruezo Sánchez's user avatar
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 ...
liu's user avatar
  • 31
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/...
glowl's user avatar
  • 41
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 ...
haifisch123's user avatar