Use np.min to get the minimal value for each column. col_min should be used to save the output. # TODO 1.2 col_min = print(f"col_min output: \n {col_min}") print(f"col_min shape: {col_min.shape}") todo_check([ (col_min.shape == (5,),"col_min does not have the correct shape of (5,)"), (np.all(col_min == np.array([2,2,2,2,2])),'col_min does not have the correct values') ])   expected output

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter12: Secondary Storage Management
Section: Chapter Questions
Problem 13VE
icon
Related questions
Question

Use np.min to get the minimal value for each column. col_min should be used to save the output.

# TODO 1.2
col_min =

print(f"col_min output: \n {col_min}")
print(f"col_min shape: {col_min.shape}")

todo_check([
(col_min.shape == (5,),"col_min does not have the correct shape of (5,)"),
(np.all(col_min == np.array([2,2,2,2,2])),'col_min does not have the correct values')
])
 
expected output
col_min output:
[2 2 2 2 2]
col_min shape: (5,)
Transcribed Image Text:col_min output: [2 2 2 2 2] col_min shape: (5,)
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Lock objects
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning