三维数组结构、存储与读取

matlab与python中的reshape
多数情况我们得到的是一行很大的数据,如shape(1,256256360),1行23592960列。
-
在matlab中reshape得到一个二维数组是reshape(列,行)这样一个排列
-
在python中reshape得到一个二维数组是reshape(行,行)这样一个排列

-
在matlab中的reshape得到一个三维数组是reshape(列,行,面[深])这样一个排列,由内到外。
-
在matlab中的reshape得到一个三维数组是reshape&