| Contents | Index |
cone = conofinf(wname,scales,LenSig,COIval)
[cone,PL,PR]
= conofinf(wname,scales,LenSig,COIval)
[cone,PL,PR,PLmin,PRmax]
= conofinf(wname,scales,LenSig,COIval)
[PLmin,PRmax]
= conofinf(wname,scales,LenSig)
[...] = conofinf(...,'plot')
cone = conofinf(wname,scales,LenSig,COIval) returns the cone of influence (COI) for the wavelet wname at the scales in scales and positions in COIval. LenSig represents the length of the input signal. If COIval is a scalar, cone is a matrix with row dimension length(scales) and column dimension LenSig. If COIval is a vector, cone is a cell array of matrices. COIval can be a value outside of the interval [1, LenSig].
[cone,PL,PR] = conofinf(wname,scales,LenSig,COIval) returns the equations of the left and right boundaries of the cone of influence for the points in COIval. PL and PR are length(COIval)-by-2 matrices. The first column contains the slope and the second column contains the scale-axis intercept of the lines defining the left and right COI boundaries. The left and right boundaries of the COI at a given scale, Scal, are(Scal-PL(:,2))./PL(:,1) and (Scal-PR(:,2))./PR(:,1).
[cone,PL,PR,PLmin,PRmax] = conofinf(wname,scales,LenSig,COIval) returns the equations of the lines that define the minimal left and maximal right boundaries of the cone of influence. PLmin and PRmax are 1-by-2 row vectors where PLmin(1) and PRmax(1) are the slopes of the lines. PLmin(2) and PRmax(2) are the points where the lines intercept the scale axis at the maximum scale value in scales.
[PLmin,PRmax] = conofinf(wname,scales,LenSig) returns the slope and intercept terms for the first-degree polynomials defining the minimal left and maximal right vertices of the cone of influence.
[...] = conofinf(...,'plot') plots the cone of influence.
Let ψ(t) be an admissible wavelet. Assume that the effective support of ψ(t) is [-B,B]. Letting u denote the translation parameter and s denote the scale parameter, you obtain the dilated and translated wavelet as follows:
![]()
The translated and dilated wavelet has effective support [u-sB,u+sB]. The cone of influence (COI) is the set of all t included in the effective support of the wavelet at a given position and scale. This set equals
![]()
At each scale, the COI determines the set of wavelet coefficients influenced by the value of the signal at a specified position.
Cone of influence for Mexican hat wavelet.
load cuspamax signal = cuspamax; wname = 'mexh'; scales = 1:64; lenSIG = length(signal); COIval = 500; figure; cwt(signal,scales,wname,'plot'); hold on [cone,PL,PR,Pmin,Pmax] = conofinf(wname,scales,lenSIG,COIval,'plot');
Left minimal and right maximal vertices for the cone of influence (Morlet wavelet).
[PLmin,PRmax] = conofinf('morl',1:32,1024,[],'plot');
% PLmin = -0.1245*u+ 32.0000
% PRmax = 0.1250*u-96.0000Mallat, S. A Wavelet Tour of Signal Processing, London: Academic Press, 1999, p. 174.

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |