Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Nikola de Lange
git.practice
Commits
7579ca01
Commit
7579ca01
authored
Jan 23, 2019
by
Laurent Heirendt
✈
Browse files
changing documentation of src functions
parent
882b163e
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/firstCommit/addTwoNumbers_myName.m
View file @
7579ca01
function
c
=
addTwoNumbers_myName
(
a
,
b
)
function
c
=
addTwoNumbers_myName
(
a
,
b
)
% addTwoNumbers(a, b) returns the sum of a and b
% addTwoNumbers
_myName
(a, b) returns the sum of a and b
c
=
a
-
b
;
c
=
a
-
b
;
end
end
src/secondCommit/multiplyTwoNumbers_myName.m
View file @
7579ca01
function
c
=
multiplyTwoNumbers_myName
(
a
,
b
)
function
c
=
multiplyTwoNumbers_myName
(
a
,
b
)
% multiplyTwoNumbers(a, b) returns the product of a and b
% multiplyTwoNumbers
_myName
(a, b) returns the product of a and b
c
=
a
/
b
;
c
=
a
/
b
;
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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