fix tutorial abs/abs2 (thanks to Keir)

This commit is contained in:
Gael Guennebaud 2009-02-01 22:38:51 +00:00
parent 4111316104
commit 42c4bc0ecf

View File

@ -357,8 +357,8 @@ absolute value (\link Cwise::abs() abs \endlink, \link Cwise::abs2() abs2 \endli
</td><td>\code </td><td>\code
mat3 = mat1.cwise().min(mat2); mat3 = mat1.cwise().min(mat2);
mat3 = mat1.cwise().max(mat2); mat3 = mat1.cwise().max(mat2);
mat3 = mat1.cwise().abs(mat2); mat3 = mat1.cwise().abs();
mat3 = mat1.cwise().abs2(mat2); mat3 = mat1.cwise().abs2();
\endcode</td></tr> \endcode</td></tr>
</table> </table>
</td></tr></table> </td></tr></table>