frame_data

Frames data with overlap

Syntax ^

function [ d_framed ] = frame_data( d, OL, N )

Description ^

Frames data with overlap
 
 Syntax:    [d_framed] = frame_data( d, OL, N ) 
 
 Inputs: 
      d - Input data to frame (1D array)
     OL - Overlap as a fraction (0.25 for 25% overlap)
      N - Frame length
 
 Outputs: 
     d_framed - The framed input data
 
 Example: 
     d = 1:100;
     N = 10;
     OL = (N-3)/N;
     d_framed = frame_data(d,OL,N);
 
 See also: enframe

Cross-Reference Information ^

This function calls: This function is called by:
Generated on Tue 05-Sep-2017 07:46:10 for Sound Zones