mirror of https://github.com/davisking/dlib.git
Updated the matrix example.
--HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402718
This commit is contained in:
parent
1d2ecc9d4b
commit
f2f4e57497
|
@ -58,11 +58,11 @@ int main()
|
|||
|
||||
|
||||
// now we need to initialize the y and M matrices and we can do so like this:
|
||||
M << 54.2, 7.4, 12.1,
|
||||
M = 54.2, 7.4, 12.1,
|
||||
1, 2, 3,
|
||||
5.9, 0.05, 1;
|
||||
|
||||
y << 3.5,
|
||||
y = 3.5,
|
||||
1.2,
|
||||
7.8;
|
||||
|
||||
|
@ -198,9 +198,11 @@ int main()
|
|||
A = subm(B, range(0,2), range(0,2,3));
|
||||
|
||||
// MATLAB: B(:,:) = 5
|
||||
set_subm(B,get_rect(B)) = 5;
|
||||
B = 5;
|
||||
// or equivalently
|
||||
set_all_elements(B,5);
|
||||
// or equivalently
|
||||
set_subm(B,get_rect(B)) = 5;
|
||||
|
||||
|
||||
// MATLAB: B([1:2],[1,2]) = 7
|
||||
|
|
Loading…
Reference in New Issue