Skip to content
Snippets Groups Projects
Commit be8c0751 authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

cleaning up

parent ebde3da4
No related branches found
No related tags found
No related merge requests found
function c = addTwoNumbers(a, b)
% addTwoNumbers(a, b) returns the sum of a and b
c = a + b;
end
function c = addTwoNumbers_StefaniaMagnusdottir(a, b)
% addTwoNumbers(a, b) returns the sum of a and b
c = a + b;
end
function c = addTwoNumbers_hulda(a, b)
% addTwoNumbers(a, b) returns the sum of a and b
c = a + b;
end
function c = addTwoNumbers(a, b)
% addTwoNumbers(a, b) returns the sum of a and b
c = a + b;
end
function c = addTwoNumbers_miguel(a, b)
% addTwoNumbers(a, b) returns the sum of a and b
c = a + b;
end
function c = multiplyTwoNumbers_StefaniaMagnusdottir(a, b)
% multiplyTwoNumbers(a, b) returns the product of a and b
c = a * b;
end
function c = multiplyTwoNumbers(a, b)
% multiplyTwoNumbers(a, b) returns the product of a and b
c = a * b;
end
function s = sqrt_jenn(a)
s = sqrt(a);
end
function s = sqrt_laurent(a)
s = sqrt(a);
% my comment
end
......@@ -4,7 +4,7 @@ addpath(genpath(pwd)) % add this folder and all subfolders to the path
c = addTwoNumbers_myName(1, 1); % 1 + 1
d = multiplyTwoNumbers_myName(c, c); % 2 * 2
d = multiplyTwoNumbers_myName(c, c); % 2 * 2
% test my sqrt function
assert(sqrt_myName(d) == sqrt(d))
% Test file
addpath(genpath(pwd)) % add this folder and all subfolders to the path
c = addTwoNumbers_jenn(1, 1); % 1 + 1
d = multiplyTwoNumbers_jenn(c, c); % 2 * 2
% test my sqrt function
assert(sqrt_jenn(d) == sqrt(d))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment