You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
220 B

#include <R.h>
void sum2(double* mtrx, int* m, int* n, double* res)
{
*res = 0;
for(int i=0; i < *n; i++)
{
for(int j=0; j < *m; j++) {
*res += mtrx[j * (*n) + i];
}
}
}