How to do division on matrices ?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
[a b; c d]*[x;y]=[k;l]
How can i calculate x and y if I know a,b,c,d and k,l ?
0 commentaires
Réponse acceptée
madhan ravi
le 6 Nov 2018
Modifié(e) : madhan ravi
le 6 Nov 2018
inv([a b; c d])*[k;l]
2 commentaires
Plus de réponses (1)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!