var searchIndex = {}; searchIndex["matrix"] = {"doc":"Matrix storage schemes.","items":[[3,"Band","matrix","A band matrix.",null,null],[12,"rows","","The number of rows.",0,null],[12,"columns","","The number of columns.",0,null],[12,"superdiagonals","","The number of superdiagonals.",0,null],[12,"subdiagonals","","The number of subdiagonals.",0,null],[12,"data","","The values of the diagonal elements stored as a `(superdiagonals + 1 +\nsubdiagonals) × columns` matrix such that the first row corresponds to\nthe uppermost superdiagonal whereas the last row corresponds to the\nlowest supdiagonal.",0,null],[3,"Compressed","","A compressed matrix.",null,null],[12,"rows","","The number of rows.",1,null],[12,"columns","","The number of columns.",1,null],[12,"nonzeros","","The number of nonzero elements.",1,null],[12,"format","","The storage format.",1,null],[12,"data","","The values of the nonzero elements.",1,null],[12,"indices","","The indices of columns (rows) of the nonzero elements.",1,null],[12,"offsets","","The offsets of columns (rows) such that the values and indices of the\n`i`th column (row) are stored starting from `data[j]` and `indices[j]`,\nrespectively, where `j = offsets[i]`. The vector has one additional\nelement, which is always equal to `nonzeros`, that is, `offsets[columns]\n= nonzeros` (`offsets[rows] = nonzeros`).",1,null],[3,"Dense","","A dense matrix.",null,null],[12,"rows","","The number of rows.",2,null],[12,"columns","","The number of columns.",2,null],[12,"data","","The data stored in the column-major order.",2,null],[3,"Diagonal","","A diagonal matrix.",null,null],[12,"rows","","The number of rows.",3,null],[12,"columns","","The number of columns.",3,null],[12,"data","","The values of the diagonal elements.",3,null],[3,"Triangular","","A triangular matrix.",null,null],[12,"size","","The number of rows or columns.",4,null],[12,"format","","The storage format.",4,null],[12,"data","","The data stored in the column-major order.",4,null],[4,"CompressedFormat","","The storage format of a compressed matrix.",null,null],[13,"Row","","The compressed-row format.",5,null],[13,"Column","","The compressed-column format.",5,null],[4,"TriangularFormat","","The storage format of a triangular matrix.",null,null],[13,"Lower","","The lower triangular format.",6,null],[13,"Upper","","The upper triangular format.",6,null],[11,"fmt","","",0,null],[11,"clone","","",0,null],[11,"rows","","",0,null],[11,"columns","","",0,null],[11,"nonzeros","","",0,null],[11,"from","","",2,{"inputs":[{"name":"band"}],"output":{"name":"dense"}}],[11,"fmt","","",1,null],[11,"clone","","",1,null],[11,"eq","","",5,null],[11,"fmt","","",5,null],[11,"clone","","",5,null],[11,"rows","","",1,null],[11,"columns","","",1,null],[11,"nonzeros","","",1,null],[11,"from","","",2,{"inputs":[{"name":"compressed"}],"output":{"name":"dense"}}],[11,"fmt","","",2,null],[11,"clone","","",2,null],[11,"rows","","",2,null],[11,"columns","","",2,null],[11,"into","","",2,null],[11,"deref","","",2,null],[11,"deref_mut","","",2,null],[11,"fmt","","",3,null],[11,"clone","","",3,null],[11,"rows","","",3,null],[11,"columns","","",3,null],[11,"nonzeros","","",3,null],[11,"from","","",0,{"inputs":[{"name":"diagonal"}],"output":{"name":"band"}}],[11,"from","","",2,{"inputs":[{"name":"diagonal"}],"output":{"name":"dense"}}],[11,"deref","","",3,null],[11,"deref_mut","","",3,null],[11,"fmt","","",4,null],[11,"clone","","",4,null],[11,"eq","","",6,null],[11,"fmt","","",6,null],[11,"clone","","",6,null],[11,"rows","","",4,null],[11,"columns","","",4,null],[11,"size","","",4,null],[11,"nonzeros","","",4,null],[11,"from","","",2,{"inputs":[{"name":"triangular"}],"output":{"name":"dense"}}],[8,"Matrix","","A matrix.",null,null],[16,"Element","","The element type.",7,null],[10,"rows","","Return the number of rows.",7,null],[10,"columns","","Return the number of columns.",7,null],[8,"Sparse","","A sparse matrix.",null,null],[10,"nonzeros","","Return the number of nonzero elements.",8,null],[8,"Square","","A square matrix.",null,null],[10,"size","","Return the number of rows or columns.",9,null],[8,"Element","","An element of a matrix.",null,null],[10,"zero","","Return the zero element.",10,{"inputs":[],"output":{"name":"self"}}]],"paths":[[3,"Band"],[3,"Compressed"],[3,"Dense"],[3,"Diagonal"],[3,"Triangular"],[4,"CompressedFormat"],[4,"TriangularFormat"],[8,"Matrix"],[8,"Sparse"],[8,"Square"],[8,"Element"]]}; initSearch(searchIndex);