comparison general/numerical/matrix/outer.m @ 16:db7f4afd27c5

Rearranging numerical toolbox.
author samer
date Thu, 17 Jan 2013 13:20:44 +0000
parents general/numerical/outer.m@e44f49929e56
children
comparison
equal deleted inserted replaced
15:19ec801ee487 16:db7f4afd27c5
1 % outer - outer product for 2D matrix
2 %
3 % outer :: [[N,M]] -> [[N,N]].
4 function Y=outer(X), Y=X*X';