[go: up one dir, main page]

Menu

[17deec]: / frames / framegram.m  Maximize  Restore  History

Download this file

17 lines (15 with data), 501 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
function framegram(F,x,varargin)
%FRAMEGRAM Easy visualization of energy in transform domain
% Usage: framegram(F,x,...);
%
% `framegram(F,x)` plots the energy of the frame coefficients computed
% from the input signal *x* using the frame *F* for analysis. This is
% just a shorthand for::
%
% plotframe(F,abs(frana(F,x)).^2);
%
% Any additional arguments given to `framegram` are passed onto
% |plotframe|.
%
% See also: plotframe
plotframe(F,abs(frana(F,x)).^2,varargin{:});