Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
camilo committed Nov 20, 2024
1 parent 1b93a07 commit 5cf3d7f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/qinterp1.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,15 @@ extern "C" {
* @brief A 1D interpolation object.
*/
typedef struct {
/*! @cond */
float (*method)( const float x,
const float * const tx,
const float * const ty,
const size_t tableSize );
const float *xData;
const float *yData;
size_t dataSize;
/*! @cond */
} qInterp1_t;

/**
Expand Down

0 comments on commit 5cf3d7f

Please sign in to comment.