combination.m
来自「good code for matlab by mili , i than yo」· M 代码 · 共 4 行
M
4 行
% Finds the Combination of Two integers
function returnvalue = Combination(m,n)
returnvalue = Factorial(m)/(Factorial(n)*Factorial(m-n));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?