cwt.m

来自「我找到的matlab的最新工具箱」· M 代码 · 共 23 行

M
23
字号
function transformed_signal = cwt(original_signal, nb_scales)% function transformed_signal = cwt(original_signal, nb_scales)%% Forward 1D Continuous Wavelet Transform.%% original_signal (N x 1 or 1 x N real double vector)%     The signal to be transformed.%% nb_scales (real double scalar)%     The number of scales : 1, 2, 3, ... 10%% transformed_signal (N x (nb_scales + 1) real double matrix)%     The full-resolution subbands of the transformed signal. The order%     of the subbands is:%     high(1), high(2), ... high(nb_scales), low(nb_scales)%% See also:%     cwti, plotzoom%% 2D Continuous Wavelet Packet Transform package% (c) 2002-2005 Let It Wave, all rights reserved

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?