I've got variable which stores anonymous function e.g.
temp_f = @(x)((1/h^3)*(((xi+2*i)-x)^3-4*((xi+i)-x)^3))
I would like to multiply it by 'varA' so in next step I could get
temp2_f = @(x) (temp_f(x) * varA)
how can I approach that?
thanks in advance