Files
LAFF/Answers/Week06/Solve.m
Julien Lengrand-Lambert d4dce71599 Create repo
2018-05-02 09:13:08 +02:00

16 lines
175 B
Matlab
Executable File

function [ A_out, b_out ] = Solve( A, b )
% Solves A x = b
LU = LU_unb_var5( A );
z = Ltrsv_unb_var1( LU, b );
x = Utrsv_unb_var1( LU, z );
A_out = LU;
b_out = x;
end