mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:23:11 +02:00
5 lines
148 B
Matlab
5 lines
148 B
Matlab
function Matrix = swapRowMatrix(Matrix, i1, i3)
|
|
tempRow = Matrix(i1 , :);
|
|
Matrix(i1 , :) = Matrix(i3, :);
|
|
Matrix(i3, :) = tempRow;
|
|
end |