Programmer Guide/Command Reference/EVAL/cvphase: Difference between revisions
From STX Wiki
< Programmer Guide | Command Reference | EVAL
Jump to navigationJump to search
(Created page with '{{DISPLAYTITLE:{{SUBPAGENAME}}}} Smooth multiplier matrix using a two dimensional convolution. ;Usage:<code>optmm(<var>mflag</var>, <var>a</var>, <var>w</var>)</code> :;<var>m…') |
No edit summary |
||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:{{SUBPAGENAME}}}} | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
Convert phase spectrum. | |||
;Usage:<code> | ;Usage:<code>cvphase(<var>p</var>, <var>ifmt</var>, <var>ipos</var>, <var>ibin</var>, <var>ofmt</var>, <var>opos</var>, <var>obin</var>, <var>nbin</var>, <var>orev</var>, <var>sr</var>, <var>len</var>, <var>hop</var>)</code> | ||
: | :<var>p</var>: original phase spectrum at frame ''ipos'' and in the format ''ifmt''; ''p'' is a vector with ''n'' values | ||
: | :<var>ifmt, ofmt</var>: input and output phase format | ||
: | ::*'''0''' = differences | ||
::*'''1''' = locked phase | |||
::*'''2''' = unlocked phase | |||
:<var>ipos, opos</var>: input and output frame index | |||
:<var>ibin, obin</var>: input and output spectral bin | |||
:<var>nbin</var>: number of spectral bins to convert | |||
:<var>rev</var>:reverse output phase (0=no, 1=yes) | |||
:<var>sr</var>:signal sampling rate | |||
:<var>len</var>:transformation length (in samples) used for analysis and resynthesis | |||
:<var>len</var>:hopsize (in samples) used for analysis and resynthesis | |||
;Description: | ;Description: | ||
: | ;Result:A vector ''r'' with ''nbin'' values, containing the converted phase values. | ||
;See also: [[../hcomb|hcomb]], [[../optmm|optmm]], [[Programmer_Guide/BScript#MulAc|script application '''MulAc''']] | |||
;See also: [[../hcomb|hcomb]], [[../ | |||
[[../#Functions|<function list>]] | [[../#Functions|<function list>]] |
Revision as of 13:44, 20 April 2011
Convert phase spectrum.
- Usage
cvphase(p, ifmt, ipos, ibin, ofmt, opos, obin, nbin, orev, sr, len, hop)
- p: original phase spectrum at frame ipos and in the format ifmt; p is a vector with n values
- ifmt, ofmt: input and output phase format
- 0 = differences
- 1 = locked phase
- 2 = unlocked phase
- ipos, opos: input and output frame index
- ibin, obin: input and output spectral bin
- nbin: number of spectral bins to convert
- rev:reverse output phase (0=no, 1=yes)
- sr:signal sampling rate
- len:transformation length (in samples) used for analysis and resynthesis
- len:hopsize (in samples) used for analysis and resynthesis
- Description
- Result
- A vector r with nbin values, containing the converted phase values.
- See also
- hcomb, optmm, script application MulAc