Skip to content

Reply To: AnalyticalLinear2D Functor Syntax Query

#5907
jjessberger
Participant

Hello Abhijeet,

The three arguments are the coefficients of the desired linear function. This (and their particular role) can be seen in the implementation of the AnalyticalLinear2D<T,S>::operator() method (src/functors/analytical/analyticalF.hh::395):
> output[0]=_a*x[0] + _b*x[1] + _c;

Yours,
Julius J.