If I have a multivariable integration like
NIntegrate[x^2 + y^2, {x, 1, 5}, {y, 6, 10}]
But I need to plot its result in terms of x
. Then how to do it ?
Answer
I think this would be your answer :
data = Integrate[x^2 + y^2, {x, 0, t}, {y, 6, 10}];
Plot[data, {t, 0, 6}]
and this would be your Graphic :
Comments
Post a Comment