File: viewWTLM.cat

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (34 lines) | stat: -rw-r--r-- 960 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

viewWTLM(2)                    Scilab Function                    viewWTLM(2)
NAME
  viewWTLM -  Vizualises the local maxima lines of a CWT

  Author: Paulo Goncalves

  Displays the local maxima of a continuous wavelet transform

Usage

  viewWTLM(maxmap[,scale,wt])
Input parameters
       o maxmap : 0/1 matrix  [N_scale,N] Indicator matrix of the local
         wavelet coefficients maxima
       o scale : real vector  [1,N_scale] Analyzed scale vector
       o wt : Complex matrix  [N_scale,N] Wavelet coefficients of a continu-
         ous wavelet transform (output of FWT or contwt)
See also:
  findWTLM, viewmat, contwt, cwt

Example:

  N = 2048 ; H = 0.3 ; Q = linspace(-4,4,11) ;
  [x] = fbmlevinson(N,H) ;
  [wt,scale] = cwt(x,2^(-6),2^(-1),36,0) ;
  [maxmap] = findWTLM(wt,scale)

   Vizualisation in Matlab:

  viewWTLM(maxmap,scale,wt) ,
  axis([1024 - 64 1024 + 64 0 log2(max(scale))]) ,

   Vizualisation in Scilab:  Not implemeted yet!...