Hi,
I've generated two, 2-dimensional interpolating functions nu1 and nu2, and I'd like to subtract them to generate a third function. This doesn't work:
In[123]:= nudifference = nu1 - nu2
Out[123]= InterpolatingFunction[{{-0.5, 0.5}, {0., 0.866025}}, <>] - InterpolatingFunction[{{-0.5, 0.5}, {0., 0.866025}}, <>]
Does anyone know how to make a function that's the difference of two interpolation functions?
Thanks!