File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,9 +110,43 @@ be present in the binary container. `number_of_elements` refers to the number
110110of stored values, `number_of_rows` refers to the number of rows, and `number_of_columns`
111111refers to the number of columns.
112112
113- #### VEC #### {#vec_format }
113+ #### DVEC #### {#dvec_format }
114114
115- Vector format
115+ Dense Vector format
116+
117+ : values
118+ :: Array of size `number_of_elements` containing stored values.
119+
120+ The element of the vector located at index `i` has scalar value
121+ `values[i] `.
122+
123+ #### DMATR #### {#dmatr_format}
124+
125+ Row-Major Dense Matrix format
126+
127+ : values
128+ :: Array of size `number_of_elements` containing stored values.
129+
130+ The element of the vector located at index `i, j` has scalar value
131+ `values[i * number_of_columns + j] `.
132+
133+ #### DMATC #### {#dmatc_format}
134+
135+ Column-Major Dense Matrix format
136+
137+ : values
138+ :: Array of size `number_of_elements` containing stored values.
139+
140+ The element of the vector located at index `i, j` has scalar value
141+ `values[i + j * number_of_rows] `.
142+
143+ #### DMAT #### {#DMAT_format}
144+
145+ DMAT format is an alias for [[#dmatr_format]] format.
146+
147+ #### CVEC #### {#cvec_format}
148+
149+ Compressed Sparse Vector format
116150
117151: indices_0
118152:: Array of size `number_of_elements` containing indices.
You can’t perform that action at this time.
0 commit comments