To solve non-linear equation by inversion notion

3 次查看(过去 30 天)
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?

回答(1 个)

John D'Errico
John D'Errico 2020-7-3
编辑:John D'Errico 2020-7-3
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 个评论
sookyung Kang
sookyung Kang 2020-7-6
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Systems of Nonlinear Equations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by