Q:

Write a NumPy program to multiply a matrix by another matrix of complex numbers and create a new matrix of complex numbers

0

Write a NumPy program to multiply a matrix by another matrix of complex numbers and create a new matrix of complex numbers.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import numpy as np
x = np.array([1+2j,3+4j])
print("First array:")
print(x)
y = np.array([5+6j,7+8j])
print("Second array:")
print(y)
z = np.vdot(x, y)
print("Product of above two arrays:")
print(z)

Sample Output:

First array:                                                           
[ 1.+2.j  3.+4.j]                                                      
Second array:                                                          
[ 5.+6.j  7.+8.j]                                                      
Product of above two arrays:                                           
(70-8j)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now