mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:23:11 +02:00
6 lines
214 B
Matlab
6 lines
214 B
Matlab
function [Matrix, Vector] = partialPivotingSwapOneRow(Matrix, Vector, i1, i3, m)
|
|
if Matrix(i3,i1) == m
|
|
swapRowMatrix(Matrix, i1, i3);
|
|
swapValueVector(Vector, i1, i3);
|
|
end % end if
|
|
end % end function |