Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在帮助文件中看到了以下语句:
xL = [-6 -6]; xU = [6 6];
我不明白xL和xU是向量还是矩阵。谢谢你。
xL
xU
在 MATLAB 术语中,向量和矩阵都是数值数组。
从技术上讲,向量是一种具有一行或一列的矩阵形式(请阅读isvector和ismatrix命令以获取更多信息)。
isvector
ismatrix
然而,实际上,矩阵通常在文档中被称为至少有2 列和 2 行,所以我宁愿调用xL和xU vector。
向量是一维矩阵,可以是垂直向量 (N × 1) 或水平向量 (1 × N)。向量是矩阵的子类,所以每个向量都是一个矩阵。xL和xU是水平 (1 × N) 向量,因此它们也是矩阵。