mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 18:23:06 +02:00
5 lines
175 B
Matlab
5 lines
175 B
Matlab
function [x] = solveEq(L1,b)
|
|
b = b'; %transponowanie macierzy
|
|
y = forwardSubstitution(L1,b);
|
|
x = backwardSubstitution(L1',y);
|
|
end |