Midterm Study Guide

From Quantitative Analysis Software Courses
Revision as of 17:45, 19 October 2015 by Tucker (talk | contribs) (Created page with "1. Fill in section A to complete code that will cause the following output: import numpy as np j = np.random.random([2,2]) print j print _A_ Output: 0.1624438 , 0...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

1. Fill in section A to complete code that will cause the following output:

import numpy as np
j = np.random.random([2,2])
print j
print _A_ 

Output:

[[ 0.1624438 ,  0.14157016],
[ 0.07818402,  0.85854546]]
[[ 1.        ,  1.        ],
[ 0.48129886,  6.06445229]])