Further understanding of numpy array and matrix multiplication

不言
Release: 2018-04-04 17:06:21
Original
1569 people have browsed it

The following article will share with you a further understanding of the multiplication of numpy arrays and matrices. It has a good reference value and I hope it will be helpful to everyone. Let’s take a look together

1, When it is an array, the default d*f is the product of the corresponding elements, multiply is also the product of the corresponding elements, dot ( d, f) will be converted into the product of matrices. dot dot multiplication means addition, while multiply only multiplies the corresponding elements and does not add.

2, When it is mat, the default d*f is the product of the matrix, multiply is converted into the product of the corresponding elements, dot (d, f) is the product of the matrix

3. When mixing, generally do not mix.

When mixing, the default is matrix multiplication. multiply is converted into the product of the corresponding elements, dot (d, f) is the product of the matrix

Summary: The default for array multiplication is dot multiplication, and the default for matrix is Matrix multiplication, when mixed together, the default is matrix multiplication. multiply is converted into the product of the corresponding elements, and dot (d, f) will be converted into the product of the matrix. Note that when multiply does not satisfy the corresponding elements, it is performed in the broadcast manner.

Related recommendations:

Convert matrices to lists, etc. in Python’s numpy library Function method_python

Python programming to add a column to the numpy matrix method example

Python method to create a symmetric matrix based on the numpy module

The above is the detailed content of Further understanding of numpy array and matrix multiplication. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!