Problem 5 Let V 1 2 U 2 W 1 1 Compute Value Save Value Numpy Array Called Myvectvar Hint C Q43905003
Python Coding

Problem 5. Let v= 1-2, u= -2, and w= 1 | 1 Compute the value of and save its value as a NumPy array called my_vect_var. Hint: Carefully identify which quantities in the above expression are scalars and which are vectors. Problem 6. Define a function first_rpt(M) which takes as input a NumPy matrix M, and outputs a matrix in which every row of M has been replaced with the first row. For example, the output of first_rpt(my_matrix), where my_matrix is the matrix de- fined directly above, should be the matrix array([[1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4]]) Hint: Your function should contain a for loop, which loops over the number of rows in a matrix. Use len(M) to determine how many rows are in the matrix M. Show transcribed image text Problem 5. Let v= 1-2, u= -2, and w= 1 | 1 Compute the value of and save its value as a NumPy array called my_vect_var. Hint: Carefully identify which quantities in the above expression are scalars and which are vectors. Problem 6. Define a function first_rpt(M) which takes as input a NumPy matrix M, and outputs a matrix in which every row of M has been replaced with the first row. For example, the output of first_rpt(my_matrix), where my_matrix is the matrix de- fined directly above, should be the matrix array([[1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4]]) Hint: Your function should contain a for loop, which loops over the number of rows in a matrix. Use len(M) to determine how many rows are in the matrix M.
Expert Answer
Answer to Problem 5. Let v= 1-2, u= -2, and w= 1 | 1 Compute the value of and save its value as a NumPy array called my_vect_var. …
OR