Updated matrix example.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403910
This commit is contained in:
Davis King 2010-11-18 01:29:32 +00:00
parent 88b37e6dcf
commit 674fd7aa5b

View File

@ -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))