Matrix SVD

Report a typo

There are four elements in the input, one per line. Use them to create a two-dimensional array: the first two elements are used for the first row, the next two elements are for the second one. For instance, [[4, 5], [2, 7]]. Decompose the matrix and print a tuple with the resulting arrays.

Sample Input 1:

4
5
2
7

Sample Output 1:

(array([[-0.65643125, -0.75438585],
       [-0.75438585,  0.65643125]]), array([9.50876368, 1.89299057]), array([[-0.43480907, -0.90052267],
       [-0.90052267,  0.43480907]]))
Write a program in Python 3
import numpy as np

a = int(input())
b = int(input())
c = int(input())
d = int(input())
___

Create a free account to access the full topic