我是Matlab的新手,並試圖擺脫Java/C++習俗。 問題是「我如何擺脫這些循環。」 我試圖用nchoosek(n0,2)擺脫循環的一個,但另一個問題出現了。(nchoosek的性能) <Matlab code>
for j=2:n0
for i=1:j-1
%wij is the number of rows of A that have 1 at both colu
#include <stdio.h>
long factorial(int num)
{
int counter;
int fact = 1;
for (counter = num; counter > 0; counter--) fact *= counter;
return fact;
}
float combinations(int n, i