Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LRT_infinite_dimensional_systems
conI
Commits
e76d20c0
Commit
e76d20c0
authored
Sep 23, 2020
by
Ferdinand Fischer
Browse files
added documentation
parent
0a78d905
Changes
1
Show whitespace changes
Inline
Side-by-side
+misc/binomial.m
View file @
e76d20c0
function
b
=
binomial
(
p
,
k
)
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
% BINOMIAL computation of the binomial coefficient
% b = binomial(p, k) computes the binomial coefficient:
% / p \ p!^p
% | | = -----------
% \ k / (p-k)! k!
% to use this for fractional calculus, the p can be an integer. Then, the faculty is replaced by the
% gamma function.
arguments
p
(
1
,
1
)
double
;
k
(
1
,
1
)
double
{
mustBeInteger
};
...
...
Write
Preview
Supports
Markdown
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