Skip to content
Snippets Groups Projects
Commit 9e1fbef7 authored by Jennifer Modamio's avatar Jennifer Modamio
Browse files

Merge branch 'homework_jenn' into 'master'

Homework jenn

See merge request !16
parents 3ffd2dfe 45eef67d
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 = 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
% 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