• numpy array和mat的乘法


    1.mat()函数中矩阵的乘积可以使用(星号) *  或 .dot()函数,其结果相同。而矩阵对应位置元素相乘需调用numpy.multiply()函数。

    a = np.mat([1, 2, 3])
    b = np.mat([1, 2, 3])
    c = np.mat([[1],
                [2],
                [3]])
    
    ele_multiply = np.multiply(a, b)
    mat_multiply = a*c
    dot_multiply = a.dot(c)

    结果如下:

    2.array()函数中矩阵的乘积可以使用np.matmul或者.dot()函数。而星号乘 (*)则表示矩阵对应位置元素相乘,与numpy.multiply()函数结果相同。

    import numpy as np
    
    # np.dot示例----------------------------------------------------
    a = np.array([[1, 2, 3],
                  [4, 5, 6]])
    b = np.array([0, 1, 2])
    print(np.dot(a, b.T))   # array([ 8, 17]).  shape (2,)
    
    c = np.array([[0, 1, 2],
                  [0, 1, 2]])
    print(np.dot(a, c.T))   # array([[ 8,  8],
                            #        [17, 17]])    shape(2, 2)
    
    # *示例----------------------------------------------------
    a = np.array([[1, 2, 3], [4, 5, 6]])
    b = np.array([[0, 0, 0], [1, 1, 1]])
    print(a*b)   # array([[0, 0, 0],
                 #        [4, 5, 6]])    shape(2, 3)
    
    c = np.array([2])
    print(a*c)  # array([[ 2,  4,  6],
                #        [ 8, 10, 12]])   shape(2, 3)
    
    d = 2
    print(a*d)  # array([[ 2,  4,  6],
                #        [ 8, 10, 12]])   shape(2, 3)
    
  • 相关阅读:
    在CentOS7上搭建MySQL主从复制与读写分离
    数据库 引擎
    数据库 事务
    数据库 索引
    MYSQL
    基于mysqld_multi实现MySQL 5.7.24多实例多进程配置
    09 引导过程与故障修复
    chapter 8.3
    作业 8.1
    Chapter 04 作业
  • 原文地址:https://www.cnblogs.com/picassooo/p/11840624.html
Copyright © 2020-2023  润新知