function FFTstr=myfftSt(time, data);
%myfft.m
%
% FFTstr=myfftSt(time, data);
%
%Similar to myfft, but returns vectors a, b, f and initial time t1 in a
%struct with these fields.
%


[a,b,f,t1]=myfft(time,data);

FFTstr.a=a;
FFTstr.b=b;
FFTstr.f=f;
FFTstr.t1=t1;

