MCPcopy Create free account
hub / github.com/Singular/Singular / getcolumn

Method getcolumn

Singular/svd_si.h:940–946  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

938 };
939
940 raw_vector<T> getcolumn(int iColumn, int iRowStart, int iRowEnd)
941 {
942 if( (iRowStart>iRowEnd) || wrongColumn(iColumn) || wrongRow(iRowStart) ||wrongRow(iRowEnd) )
943 return raw_vector<T>(0, 0, 1);
944 else
945 return raw_vector<T>(&((*this)(iRowStart, iColumn)), iRowEnd-iRowStart+1, m_iLinearMember);
946 };
947
948 raw_vector<T> getrow(int iRow, int iColumnStart, int iColumnEnd)
949 {

Callers 14

rmatrixbdFunction · 0.45
rmatrixbdmultiplybyqFunction · 0.45
tobidiagonalFunction · 0.45
unpackqfrombidiagonalFunction · 0.45
rmatrixqrFunction · 0.45
rmatrixqrunpackqFunction · 0.45
qrdecompositionFunction · 0.45
unpackqfromqrFunction · 0.45
inplacetransposeFunction · 0.45
copyandtransposeFunction · 0.45
matrixmatrixmultiplyFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected