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