Write a NumPy program to multiply a matrix by another matrix of complex numbers and create a new matrix of complex numbers
- برمجة بايثون
- 2021-09-13
- mhanasmh00489829403
الأجوبة
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)
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال