clad icon indicating copy to clipboard operation
clad copied to clipboard

Add support for vector of points

Open vgvassilev opened this issue 10 years ago • 2 comments

Support double f(double*, unsigned numElements); The user should be able to specify the independent variable from a given array of variables.

vgvassilev avatar Jun 16 '14 18:06 vgvassilev

Also: double f(Vec v);

where Vec is structure or class for example:

struct Vec { double x, y, z; //... }

alexander-penev avatar Jul 16 '14 20:07 alexander-penev

Add tests such as:

double f1(double* pts, size_t numElements) {...}
double f2(std::vector<double> pts) {...}
double f3(iterator begin, iterator end) {...}

vgvassilev avatar Sep 13 '14 09:09 vgvassilev