i'm trying to integrate an Interpolating function, as simple as this
z = {{-3, 0}, {-2, 1}, {-1, 2}, {0, 3}, {1, 4}, {2, 5}, {3, 6}};
f = Interpolation[z, Method -> "Spline"];
after of that, i would like integrate using "Integrate" command, but i don't know why an error message appears
F = Integrate[f[x], {x, -3, 3}]
InterpolatingFunction::unsops: The operation is not supported for InterpolatingFunction[{{-3,3}},{5,39,0,{7},{4},0,0,0,0,Automatic,{}, {},False},{{<<1>>}},{BSplineFunction[{{-3.,3.}},<>],{}},{Automatic}] that was created with Method -> "Spline".`
someone can help, please.

