A question about some of the functions.
  • I can't find a detailed description of the functions gau(x), gau(x,y), gau(x,y,z), and gau(a,b,c,d).
  • All GeneXproTools functions are implemented in C++, so the best way to find out their exact definitions is by checking the C++ grammar or the code output for each one of them. For example, the gau series corresponds to:

    gepGau  = return exp(-pow(x,2));
    gepGau2 = return exp(-pow((x+y),2));
    gepGau3 = return exp(-pow((x+y+z),2));
    gepGau4 = return exp(-pow((a+b+c+d),2));

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Tagged