How to determine which algorithm mldivide (A\b) uses
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a sparse, banded matrix, A, for which I am solving the linear system Ax=b using A\b in Matlab.
The documentation for mldivide shows a flow chart that explains which solver it will use. However, I would like to automate the process of determining the best algorithm. Therefore, I would really just like to know which algorithm mldivide chooses for different inputs. Is there a way to get this information out?
0 comentarios
Respuestas (3)
Grzegorz Knor
el 19 de Abr. de 2017
spparms('spumoni',2)
sparse(rand(3))\rand(3,1)
On my computer it produces:
sp\: bandwidth = 2+1+2.
sp\: is A diagonal? no.
sp\: is band density (1) > bandden (0.5) to try banded solver? yes.
sp\: is LAPACK's banded solver successful? yes.
0 comentarios
Jan
el 27 de Oct. de 2015
Editada: Jan
el 27 de Oct. de 2015
I'm not sure if I understand your question. You explain:
The documentation for mldivide shows a flow chart that explains which solver it will use.
Is this not a valid answer of your question already? Or are you looking for the name of the library function instead of the name of the solver? Matlab does not offer the source code for mldivide.
3 comentarios
Jan
el 30 de Oct. de 2015
The function mldivide willnot tell you, which algorithm is used. This is not the purpose of this command. You can write such a function by your own translating the flow chart of the documentation to a bunch of IF statements.
Steven Lord
el 30 de Oct. de 2015
Even if it DID tell you, for what purpose would you use that information?
Perhaps you would be better served by the LINSOLVE function, which allows you to specify various properties of the coefficient matrix for the system you're trying to solve. This can avoid some of the testing for those matrix properties (which for large matrices could be expensive.)
Ver también
Categorías
Más información sobre Operating on Diagonal Matrices en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!