Using MATLAB command can anyone solve this questio
显示 更早的评论
For a linear system A²x=b is such that A is non singualr with A=2x2 matrix and b=2X1 find the solution
回答(3 个)
% Some random input
A = rand(2, 2)
b = rand(2,1)
% Solution
x = (A*A)\b
% To veryfy that: A*A*x = b
A*A*x
Iqra Maqbool
2021-12-5
0 个投票
1 个评论
A = rand(2, 2);
Ainv = inv(A); % Ainv is given
b = rand(2,1);
% Solution
x = Ainv*Ainv*b
syms A [2 2]
syms b [2 1]
syms x [2 1]
eqn = A^2 * x == b
solution = solve(eqn, x)
1 个评论
syms A [2 2]
syms b [2 1]
syms x [2 1]
eqn = inv(A) * x == b
solution = solve(eqn, x)
类别
在 帮助中心 和 File Exchange 中查找有关 Common Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

