# -*- coding: utf-8 -*-
"""
Created on Thu Sep 15 16:53:46 2022

@author: 102194

Lab8 Q5
"""

import numpy as np
from scipy import linalg as la

A = np.random.rand(4,4)

P,L,U = la.lu(A)

print(L)
print()
print(U)

