Filter löschen
Filter löschen

To solve non-linear equation by inversion notion

2 Ansichten (letzte 30 Tage)
sookyung Kang
sookyung Kang am 3 Jul. 2020
Kommentiert: sookyung Kang am 6 Jul. 2020
I'd like to know how to solve an inversion equation from n x n matrix in AX=B to obtain X.
A=n x n, X=n x 1, B=n x n.
I used X=inv(A)*B but I got "Matrix must be square."
Is there anyone solve it?

Antworten (1)

John D'Errico
John D'Errico am 3 Jul. 2020
Bearbeitet: John D'Errico am 3 Jul. 2020
STOP.
Is this nonlinear? Or is it linear? A*X = b is still LINEAR, even if the array is not square.
Even in the linear case, thus A*X = b, even if the matrix is not square, you should never be using inv anyway.
x = A\b;
solves the problem in MATLAB. If the matrix A is rank deficient, then you can use tools like
x = pinv(A)*b;
or
x = lsqminnorm(A,b);
HOWEVER, if this truly is nonlinear? Then you have some problem in the form of a nonlinear regression, where you need to use tools like lsqnonlin or lsqcurvefit. So in either case, there exist tools to solve the problem (NONE of them should ever be inv) but you need to know which problem you want to solve. At least, you need to explain to someone clearly what problem you want to solve.
One thing you can only very rarely do, if your problem is of the form
f(x) == y
for a nonlinear function f, is to solve it by computing an inverse function that might be thought of as inv(f).
  1 Kommentar
sookyung Kang
sookyung Kang am 6 Jul. 2020
Yes because I didn't put real equations for A and B parts. So
Ff(x) == y
inv(f) is enough to solve non-linear matrix equation?
Thanks for your answer.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Systems of Nonlinear Equations finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by