Added code to cleanup the variables at the end of the script

This commit is contained in:
2018-09-26 11:17:37 -04:00
parent b63ca10669
commit 2468bd4f80
5 changed files with 24 additions and 15 deletions

View File

@@ -22,4 +22,9 @@ end
%When done this way it removes the possibility of duplicate numbers
fullSum = sum(numbers);
fullSum
ans = fullSum
%Cleanup your variables
clear fullSum;
clear numbers;
clear counter;