Using MATLAB command can anyone solve this questio
Afficher commentaires plus anciens
For a linear system A²x=b is such that A is non singualr with A=2x2 matrix and b=2X1 find the solution
Réponses (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
le 5 Déc 2021
0 votes
1 commentaire
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 commentaire
syms A [2 2]
syms b [2 1]
syms x [2 1]
eqn = inv(A) * x == b
solution = solve(eqn, x)
Catégories
En savoir plus sur Common Operations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

