Can MATLAB divide two row vectors?

2 次查看(过去 30 天)
Hi. I have a simple question. I inputted [3 3 3]/[4 5 6] in MATLAB and got 0.5844 (format short).
My question is how can MATLAB divide two row vectors?

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-11-25
编辑:Azzi Abdelmalek 2013-11-25
a=[3 3 3]
b=[4 5 6]
a./b

更多回答(1 个)

Luca Kaiser
Luca Kaiser 2022-5-31
Hi can anyone explain what Matlab is doing to get the 0.5844?
Thanks!
  2 个评论
Walter Roberson
Walter Roberson 2022-5-31
[3 3 3]/[4 5 6] is [3 3 3]*pinv([4 5 6]) to within roundoff
Stephen23
Stephen23 2022-5-31
From the MRDIVIDE documentation: "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."

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by