mirror of
https://bitbucket.org/Mattrixwv/octavefunctions.git
synced 2025-12-06 18:53:57 -05:00
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
|