General::lslc
Details
-
- This message is generated when the coefficient matrix is not compatible with the target vector in the indicated function.
- This message can be generated by LinearSolve or by LUBackSubstitution.
- Off[message] switches off the message; On[message] switches it on. For example: Off[General::lslc].
Examples
Basic Examples (1)
The first argument includes coefficients for two equations and the second argument gives coefficients for four equations:
LinearSolve[{{2, 1}, {3, 5}}, {1, 1, 2, 2}]These examples show valid arguments in LinearSolve:
LinearSolve[{{2, 1}, {3, 5}}, {1, 1}]LinearSolve[{{2, 1}, {3, 5}}, {{1, 2, 7}, {1, 2, 7}}]