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.
例如说我有以下内容vector:
vector
x=[1 2 3 4];
在这里,向量读取如下:
x1=1 x2=2 x3=3 x4=4
那是对的吗?
现在,如果我执行以下操作:
y = reshape(x,2,2);
我会得到以下信息matrix:
matrix
1 3 2 4
在这种情况下, 的值是y1, y2, y3, and y4多少?他们会像vector上面那样吗?
y1, y2, y3, and y4
谢谢。
Matlab 以列优先顺序存储数据。
有关 Matlab 索引的更多详细信息和示例,请参阅MATLAB 中的矩阵索引。