Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

Vector::VectorTem<double> Impala::Core::Matrix::GetColumn ( Mat *  m,
int  index 
) [inline]

Definition at line 16 of file GetColumn.h.

References ILOG_VAR, MatE(), and MatNrRow().

Referenced by Impala::Application::MediaTable::BarPlot::AddColumnsFromDataSource(), Impala::Application::MediaTable::TableViewerPointCloud::AddDataFromTableDataView(), Impala::Application::MediaTable::TableDataViewController::GetColumnMinMax(), Impala::Application::MediaTable::BarPlot::ShowHistogram(), and Impala::Core::Matrix::DistributedAccess::StartEventLoop().

00017 {
00018     ILOG_VAR(Core.Matrix.GetColumn);
00019     int length = MatNrRow(m);
00020     Vector::VectorTem<double> v(length);
00021     for(int i=0 ; i<length ; ++i)
00022         v[i] = *MatE(m, i, index);
00023     return v;
00024 }

Here is the call graph for this function:


Generated on Fri Mar 19 11:15:52 2010 for ImpalaSrc by  doxygen 1.5.1