Can MATLAB divide two row vectors?
8 ビュー (過去 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?
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 11 月 25 日
編集済み: Azzi Abdelmalek
2013 年 11 月 25 日
a=[3 3 3]
b=[4 5 6]
a./b
0 件のコメント
その他の回答 (1 件)
Luca Kaiser
2022 年 5 月 31 日
Hi can anyone explain what Matlab is doing to get the 0.5844?
Thanks!
2 件のコメント
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 Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!