LUBackSubstitution::bpvt
LUBackSubstitution::bpvt
Details
-
- This message is generated when the second element in the data expression passed to LUBackSubstitution is not a list of integers in the required range.
- This message can occur if a data expression is entered incorrectly.
- A valid data expression can be obtained using LUDecomposition.
- Off[message] switches off the message; On[message] switches it on. For example: Off[LUBackSubstitution::bpvt].
Examples
Basic Examples (1)
The second element in the data expression is not a list of positive integers:
LUBackSubstitution[{{{1, 2}, {2, 1}}, {0, {}}, 1}, {1, 1}]This shows a valid data expression in LUBackSubstitution:
LUBackSubstitution[{{{1, 2}, {2, 1}}, {1, 2}, 1}, {1, 1}]A valid data expression for use in LUBackSubstitution can be constructed using LUDecomposition:
ludec = LUDecomposition[{{1, 2}, {2, 5}}]LUBackSubstitution[ludec, {1, 1}]This particular example corresponds to solving a pair of linear equations:
LinearSolve[{{1, 2}, {2, 5}}, {1, 1}]Clear[ludec]