Solving linear systems in Matlab
Mostrar comentarios más antiguos
How do I solve for x in u = A(x+b)? A is a matrix, and the other terms are vectors. Isn't it something like x = A\u - b ? I'm not sure about subtracting the b term, however.
1 comentario
Bruno Luong
el 24 de Ag. de 2023
Editada: Bruno Luong
el 24 de Ag. de 2023
In some sense x = A\u - b is the worse you can pick.
Respuesta aceptada
Más respuestas (1)
Steven Lord
el 24 de Ag. de 2023
0 votos
Define a new variable y such that y = x+b.
Using this new variable simplifies your system to u = A*y.
Solve this simplified system for y using the backslash operator, y = A\u.
Substituing into that solution using the definition of y, we know x+b = A\u.
Subtract b from both sides to get x = (A\u)-b.
Categorías
Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!