mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:23:11 +02:00
5 lines
150 B
Plaintext
5 lines
150 B
Plaintext
function Vector = swapValueVector(Vector, i1, i3)
|
|
tempVal = Vector(i1);
|
|
Vector(i1) = Vector(i3);
|
|
Vector(i3) = tempVal;
|
|
end % end function |