9 lines
105 B
Matlab
9 lines
105 B
Matlab
function [x,y] = swap(first, second)
|
|
%
|
|
%Swap the first and second values
|
|
%
|
|
|
|
x = second;
|
|
y = first;
|
|
end
|