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{:});