x=matrix([[0],[1]])
x.inverse()
We cant find A since
ArithmeticError: self must be a square matrix

x=matrix([[1],[2],[3]])
x.inverse()
Similarly we cant find B since
ArithmeticError: self must be a square matrix

Strang-2.2-47-U (last edited 2010-12-17 09:47:30 by lakshmi)