Lines Matching full:matrix
5 <!-- Fixed x Fixed Matrix -->
6 <Type Name="Eigen::Matrix<*,*,*,*,*,*>">
8 <DisplayString>[{$T2}, {$T3}] (fixed matrix)</DisplayString>
24 <!-- 2 x 2 Matrix -->
25 <Type Name="Eigen::Matrix<*,2,2,*,*,*>">
27 <DisplayString>[2, 2] (fixed matrix)</DisplayString>
44 <!-- 3 x 3 Matrix -->
45 <Type Name="Eigen::Matrix<*,3,3,*,*,*>">
47 <DisplayString>[3, 3] (fixed matrix)</DisplayString>
70 <!-- 4 x 4 Matrix -->
71 <Type Name="Eigen::Matrix<*,4,4,*,*,*>">
73 <DisplayString>[4, 4] (fixed matrix)</DisplayString>
102 <!-- Dynamic x Dynamic Matrix -->
103 <Type Name="Eigen::Matrix<*,-1,-1,*,*,*>">
106 <DisplayString Condition="m_storage.m_data != 0">[{m_storage.m_rows}, {m_storage.m_cols}] (dynamic matrix)</DisplayString>
122 <!-- Fixed x Dynamic Matrix -->
123 <Type Name="Eigen::Matrix<*,*,-1,*,*,*>">
126 <DisplayString Condition="m_storage.m_data != 0">[{$T2}, {m_storage.m_cols}] (dynamic column matrix)</DisplayString>
142 <!-- Dynamic x Fixed Matrix -->
143 <Type Name="Eigen::Matrix<*,-1,*,*,*,*>">
146 <DisplayString Condition="m_storage.m_data != 0">[{m_storage.m_rows}, {$T2}] (dynamic row matrix)</DisplayString>
163 <Type Name="Eigen::Matrix<*,1,-1,*,*,*>">
177 <Type Name="Eigen::Matrix<*,-1,1,*,*,*>">
191 <Type Name="Eigen::Matrix<*,1,1,*,*,*>">
199 <Type Name="Eigen::Matrix<*,2,1,*,*,*>">
200 <AlternativeType Name="Eigen::Matrix<*,1,2,*,*,*>"/>
210 <Type Name="Eigen::Matrix<*,3,1,*,*,*>">
211 <AlternativeType Name="Eigen::Matrix<*,1,3,*,*,*>"/>
222 <Type Name="Eigen::Matrix<*,4,1,*,*,*>">
223 <AlternativeType Name="Eigen::Matrix<*,1,4,*,*,*>"/>