Matrixprodukt in Python numpy

Matrixprodukt mit Numpy

mat_multi.py



import numpy as np

a=np.array([[1,2], [3,4]])
b=np.array([[5,6], [7,8]])

#a.*b in MATLAB
x=a*b
print (x)
#[[ 5 12]
# [21 32]]

#a*b in MATLAB
y=np.dot(a,b)
print (y)
#[[19 22]
# [43 50]]

####################
#Sie haben darauf hingewiesen.
y=a@b
Aber es scheint, dass Sie gehen können.

Beachten Sie, dass dies das Gegenteil von MATLAB ist.

Recommended Posts

Matrixprodukt in Python numpy
[Python] Matrix-Multiplikationsverarbeitungszeit mit NumPy
Transmutationsmatrix im Python-Standard
Matrix Produkt
Zeichnen Sie eine Streudiagrammmatrix mit Python
Setzen Sie Python, Numpy, OpenCV3 in Ubuntu14
Selbstorganisierende Karte in der Python NumPy-Version
Quadtree in Python --2
Mein Numpy (Python)
Python in der Optimierung
CURL in Python
Metaprogrammierung mit Python
Python 3.3 mit Anaconda
Geokodierung in Python
wo von numpy
SendKeys in Python
Metaanalyse in Python
Unittest in Python
Epoche in Python
Zwietracht in Python
Deutsch in Python
DCI in Python
Quicksort in Python
N-Gramm in Python
Programmieren mit Python
So zeigen Sie die neunundneunzig Tabelle in Python an
# Python-Grundlagen (#Numpy 1/2)
Plink in Python
Konstante in Python
# Python-Grundlagen (#Numpy 2/2)
Suchen und überprüfen Sie die inverse Matrix in Python
FizzBuzz in Python
SQLite in Python
Schritt AIC in Python
[Python] Matrixoperation
LINE-Bot [0] in Python
CSV in Python
Reverse Assembler mit Python
Reflexion in Python
Konstante in Python
nCr in Python.
Format in Python
Scons in Python 3
Puyopuyo in Python
Python in Virtualenv
PPAP in Python
Python #Numpy Basics
Quad-Tree in Python
Reflexion in Python
Chemie mit Python
Hashbar in Python
DirectLiNGAM in Python
LiNGAM in Python
In Python reduzieren
[Python] Numpy Memo
In Python flach drücken
[Wissenschaftlich-technische Berechnung mit Python] Inverse Matrixberechnung, numpy
Ein Liner, der neunundneunzig in Python ausgibt