mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
12 lines
185 B
C++
12 lines
185 B
C++
#include <Grid/Grid.h>
|
|
|
|
Grid::vRealD add(const Grid::vRealD &x, const Grid::vRealD &y)
|
|
{
|
|
return x+y;
|
|
}
|
|
|
|
Grid::vRealD sub(const Grid::vRealD &x, const Grid::vRealD &y)
|
|
{
|
|
return x-y;
|
|
}
|