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

3 years ago
3 years ago
3 years ago
  1. #include <R.h>
  2. void sum2(double* mtrx, int* m, int* n, double* res)
  3. {
  4. *res = 0;
  5. for(int i=0; i < *n; i++)
  6. {
  7. for(int j=0; j < *m; j++) {
  8. *res += mtrx[j * (*n) + i];
  9. }
  10. }
  11. }