Sign in
eigen
/
mirror
/
c9b046d5d5eba6e3f454ec2a125d74a21c61d988
/
.
/
doc
/
snippets
/
MatrixBase_minor.cpp
blob: 5f9dc5c96d76e7ae1d42baf8c3c97b6b3c4dd3ac [
file
] [
log
] [
blame
]
Matrix3i
m
=
Matrix3i
::
random
();
cout
<<
"Here is the matrix m:"
<<
endl
<<
m
<<
endl
;
cout
<<
"Here is m.minor(1,1):"
<<
endl
<<
m
.
minor
(
1
,
1
)
<<
endl
;