Differences between revisions 2 and 3
Revision 2 as of 2010-12-17 09:30:34
Size: 520
Editor: 172
Comment:
Revision 3 as of 2010-12-17 11:45:00
Size: 474
Editor: 172
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
Line 22: Line 23:
   * <Your Name>, <Profession>, <Organization>
  • Book

    Linear Algebra

    Author

    Gilbert Strang

    Edition

# Sec. 3.2, Example 1

import numpy as np
a = matrix((1,1,1))
b = matrix((1,2,3))
at = a.transpose()
num = np.dot(b, at)[0][0]
den = np.dot(a, at)[0][0]
print num / den

  • Solution by:

    • <Dr. A. W. Pangantiwar>, <Associate Prof. in Physics>, <Govt. College of Engineering, KARAD - 415124. Dist. Satara>

Strang-3.2-1 (last edited 2010-12-17 11:45:00 by 172)