function [Int]=stamm(Mat)
s=size(Mat);
a=s(1);
b=s(2);
Int=zeros(a,b+1);
for i=1:a(1)
Int(i,:)=polyint(Mat(i,:));
end
end