How Does Matrix Division Work in Matlab?

  • Context: MATLAB 
  • Thread starter Thread starter rootX
  • Start date Start date
  • Tags Tags
    Matlab
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 3K views
rootX
Messages
480
Reaction score
4
>> A1

A1 =

4 1 -2
5 1 3
4 0 -1

>> V

V =

1 2 3

>> A1/V

ans =

-0.0000
1.1429
0.0714

>>

Question: what did it do?
A1 is a 3x3 matrix
 
Physics news on Phys.org
From the documentation:

/: Slash or matrix right division. B/A is roughly the same as B*inv(A). More precisely, B/A = (A'\B')'. See the reference page for mrdivide for more information.

- Warren