python 将3D数组转换为列向量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 将3D数组转换为列向量相关的知识,希望对你有一定的参考价值。

def image2vector(image):
    """
    Argument:
    image -- a numpy array of shape (length, height, depth)
    
    Returns:
    v -- a vector of shape (length*height*depth, 1)
    """
    
    v = image.reshape((image.shape[0] * image.shape[1] * image.shape[2], 1))
    
    return v

以上是关于python 将3D数组转换为列向量的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 PANDAS / Python 将矩阵转换为列数组

如何在初始化期间将 std::initializer_list 转换为列矩阵或列向量?

在 Numpy 中将行向量转换为列向量

在 NumPy 中将行向量转换为列向量

python怎么将数组转换为矩阵

BigQuery:将数组中的键值对转换为列