[SciPy-Dev] Quick update to earlier post

Brian Lee Newsom Brian.Newsom at Colorado.EDU
Tue Oct 8 01:17:07 EDT 2013


Hello,

Just in case it was a source of confusion, somehow I managed to post an
outdated version of my test.c file using pointers that could be cause for
errors in certain situations.  The one I am actually testing with is as
follows:

//////////////test.c\\\\\\\\\\\\\\\\\\\\

#include <stdio.h>
double oneD(double x);
double twoD(double x, double y);
int main(){
  return 0;
}
double oneD(double x){
  return x+2.0;
}
double twoD(double x, double y){
  return x*x + y*y;
}

//////////////test.c\\\\\\\\\\\\\\\\\\\\
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/scipy-dev/attachments/20131007/88674140/attachment.html>


More information about the SciPy-Dev mailing list