Added new files for Numerical Analysis

This commit is contained in:
2018-09-22 15:27:54 -04:00
parent 52997050f5
commit 3b669a2979
7 changed files with 197 additions and 0 deletions

8
swap.m Normal file
View File

@@ -0,0 +1,8 @@
function [x,y] = swap(first, second)
%
%Swap the first and second values
%
x = second;
y = first;
end