What is the meaning of dividing two vectors without dot

10 views (last 30 days)
I have the next division, Wich is the meaning of this division???
f =
1 2 3
fd =
3 3 3
f/fd=
0.6667

Answers (2)

Jan
Jan on 19 Mar 2019
According to the documentation:
  • x = B / A solves the system of linear equations x*A = B for x.
  • If A is a rectangular m-by-n matrix with m ~= n, and B is a matrix with n columns, then x = B/A returns a least-squares solution of the system of equations x*A = B.

Star Strider
Star Strider on 19 Mar 2019
See the documentation section on Array vs. Matrix Operations (link).

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!