I am trying to use nnet function in R to approximate the function of two variables y(a,b). Both variable, "a" and "b are known at fixed points:
a={a(1),a(2),...,a(i),...a(n)} and
b={b(1),b(2),...,b(i),...b(n)}.
The value of "y" function is known for each pair a(i),b(i), i.e.
y(a,b)={y(a(1),b(1)),y(a(2),b(2),...y(a(i),b(i),...y(a(n),b(n)}.
I make
res=nnet(y~a+b,size=X,maxit=M,linout=TRUE),
where X and M are defined.
How can I get value of result between the points, for example at some a- value, which is between a(i) and a(i+1) and b-value, which is between b(j) and b(j+1) ?

predicton the fitted object you just created. – Carl Witthoft Jan 23 at 19:07