Commit 674fd7aa authored by Davis King's avatar Davis King

Updated matrix example.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403910
parent 88b37e6d
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment