Displaying 1 result from an estimated 1 matches for "length_x".
Did you mean:
length_s
2009 Apr 03
1
Hello! I got error in C - R
...My C code is following:
---------------------------------------------------------------------------
#include<stdio.h>
#include<stdlib.h>
#include<R.h>
#include<Rmath.h>
#include<malloc.h>
#define Min(X,Y) ((X) < (Y) ? (X) : (Y))
void SecondMH(int *n, int *X, int *length_X, double *theta_new, int
*n_para, double *out);
int MH_Result(double *theta_new, int n_para, int *M1, int *M2, int n);
double Count_Edges(int *X, int n);
double Cal_GWD(int *X, int n);
int Cal_Degree(int *M3, int n);
double Inner_Product( double *vector1, double *vector2, int length);
int rdtsc();...