mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Updated matrix example.
--HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403910
This commit is contained in:
parent
88b37e6dcf
commit
674fd7aa5b
@ -151,6 +151,9 @@ int main()
|
||||
// MATLAB: E = A + B
|
||||
E = A + C;
|
||||
|
||||
// MATLAB: E = A + 5
|
||||
E = A + 5;
|
||||
|
||||
// MATLAB: E = E'
|
||||
E = trans(E); // Note that if you want a conjugate transpose then you need to say conj(trans(E))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user