Home > bml > annot > bml_annot_rowbind.m

bml_annot_rowbind

PURPOSE ^

BML_ANNOT_ROWBIND binds tables by rows, conforming to first table

SYNOPSIS ^

function annot = bml_annot_rowbind(varargin)

DESCRIPTION ^

 BML_ANNOT_ROWBIND binds tables by rows, conforming to first table

 Use as
    annot = bml_annot_rowbind(annot1, annot2, annot3, ...)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function annot = bml_annot_rowbind(varargin)
0002 
0003 % BML_ANNOT_ROWBIND binds tables by rows, conforming to first table
0004 %
0005 % Use as
0006 %    annot = bml_annot_rowbind(annot1, annot2, annot3, ...)
0007 
0008 annot = varargin{1};
0009 for i=2:numel(varargin)
0010   annot = [annot; bml_annot_conform_to(annot, varargin{i})];
0011 end
0012 
0013 annot.id=[];
0014 annot = bml_annot_table(annot);

Generated on Tue 25-Sep-2018 10:08:19 by m2html © 2005