Lines Matching refs:can
29 that you have to set the size before you can use the comma initializer.
40 We can use the same technique to initialize matrices with a block structure.
51 The comma initializer can also be used to fill block expressions such as <tt>m.row(i)</tt>. Here is…
66 …rix and Array classes have static methods like \link DenseBase::Zero() Zero()\endlink, which can be
68 and can only be used for fixed-size objects. If you want to initialize a dynamic-size object to zer…
69 to specify the size. Thus, the second variant requires one argument and can be used for one-dimensi…
70 dynamic-size objects, while the third variant requires two arguments and can be used for two-dimens…
85 \endlink fills the matrix or array with random coefficients. The identity matrix can be obtained by…
102 This example shows that objects like the ones returned by LinSpaced() can be assigned to variables …
118 A summary of all pre-defined matrix, vector and array objects can be found in the \ref QuickRefPage.
123 As shown above, static methods as Zero() and Constant() can be used to initialize variables at the …
124 declaration or at the right-hand side of an assignment operator. You can think of these methods as …
128 These expressions can also be used as a temporary object. The second example in
143 The comma-initializer, too, can also be used to construct temporary objects. The following example …