[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
3.12.7 STFA
- Method on
mglGraph
(C++, Python):void
STFA (const mglData &
x,const mglData &
y,const mglData &
re,const mglData &
im,int
dn,const char *
sch=""
,float
zVal=NAN
) - C function:
void
mgl_stfa_xy (HMGL
gr,const HMDT
x,const HMDT
y,const HMDT
re,const HMDT
im,int
dn,const char *
sch,float
zVal) Draws spectrogram of complex array re+i*
im
for Fourier size of dn points at plane z=zVal. Parameter dn is arbitrary even integer. For example in 1D case, result is density plot of data res[i,j]=|\sum_d^dn exp(I*j*d)*(re[i*dn+d]+I*im[i*dn+d])|/dn with size {int(nx/dn), dn, ny}. At this array re, im parametrically depend on coordinates x, y. String sch sets the color scheme. Previous color scheme is used by default. The size of re and im must be the same. The minor dimensions of arrays x, y, re should be equal. Arrays x, y can be vectors (not matrix as re). See section STFA sample, for sample code and picture.
- Method on
mglGraph
(C++, Python):void
STFA (const mglData &
re,const mglData &
im,int
dn,const char *
sch=""
,float
zVal=NAN
) - C function:
void
mgl_stfa (HMGL
gr,const HMDT
re,const HMDT
im,int
dn,const char *
sch,float
zVal) The same as previous with x, y equidistantly distributed in interval [Min, Max].
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |