Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
R3
school
git
basic-practice
Commits
56858c1f
Commit
56858c1f
authored
Jan 23, 2019
by
Laurent Heirendt
✈
Browse files
changing src functions on purpose
parent
e31918ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/firstCommit/addTwoNumbers_myName.m
View file @
56858c1f
function
c
=
addTwoNumbers_myName
(
a
,
b
)
% addTwoNumbers(a, b) returns the sum of a and b
c
=
a
+
b
;
c
=
a
-
b
;
end
src/secondCommit/multiplyTwoNumbers_myName.m
View file @
56858c1f
function
c
=
multiplyTwoNumbers_myName
(
a
,
b
)
% multiplyTwoNumbers(a, b) returns the product of a and b
c
=
a
*
b
;
c
=
a
/
b
;
end
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment