matrix A: 3 4 56 ne nested list ber of rows and the number of second-level elements represent

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Questioh 4. MatriX Construction
In mathematics, a matrix is a 2-dimensional (tabular) array of numbers or symbols arranged in rows and columns. The following is the notation of a 3 by 2
matrix (3 rows and 2 columns) containing the numbers from 1 to 6:
1
matrix A =
3
4.
6.
In Python, we can represent this 2-dimensional array with the nested list
matrixA =
[[1, 2], [3, 4], [5, 6]]
where the number of first-level elements represent the number of rows and the number of second-level elements represent the number of columns.
Write a function create_matrix that takes a sequence of integers and two additional numbers that specify the shape of the matrix (i.e., the number of rows
and columns, respectively) to create a nested list representing the matrix filled by these integers row-wise.
For example, calling create_matrix(*range(4, 19), rows=3, cols=5) returns a nested list representing the following 3 (rows) by 5 (columns) matrix:
4
6.
8.
9.
10
11
12
13
14
15
16
17
18
Transcribed Image Text:Questioh 4. MatriX Construction In mathematics, a matrix is a 2-dimensional (tabular) array of numbers or symbols arranged in rows and columns. The following is the notation of a 3 by 2 matrix (3 rows and 2 columns) containing the numbers from 1 to 6: 1 matrix A = 3 4. 6. In Python, we can represent this 2-dimensional array with the nested list matrixA = [[1, 2], [3, 4], [5, 6]] where the number of first-level elements represent the number of rows and the number of second-level elements represent the number of columns. Write a function create_matrix that takes a sequence of integers and two additional numbers that specify the shape of the matrix (i.e., the number of rows and columns, respectively) to create a nested list representing the matrix filled by these integers row-wise. For example, calling create_matrix(*range(4, 19), rows=3, cols=5) returns a nested list representing the following 3 (rows) by 5 (columns) matrix: 4 6. 8. 9. 10 11 12 13 14 15 16 17 18
matrixA = [[1, 2], [3, 4], [5, 6]]
where the number of first-level elements represent the number of rows and the number of second-level elements represent the number of columns.
Write a function create_matrix that takes a sequence of integers and two additional numbers that specify the shape of the matrix (i.e., the number of rows
and columns, respectively) to create a nested list representing the matrix filled by these integers row-wise.
For example, calling create_matrix(*range(4, 19), rows=3, cols=5) returns a nested list representing the following 3 (rows) by 5 (columns) matrix:
4.
7
8.
9
10
11
12
13
14
15
16
17
18
Also include exception handling so that the function prints an error message if the number of intergers does not match the product of the number of rows and
that of columns. For example, calling create_matrix(2, 3, 14, 15, rows=3, cols=2) prints
The number of elememnts does not match the shape of the matrix.
In [e]: # Write your function definition below
matrixA = [[1, 2], [3, 4], [5, 6]]
Transcribed Image Text:matrixA = [[1, 2], [3, 4], [5, 6]] where the number of first-level elements represent the number of rows and the number of second-level elements represent the number of columns. Write a function create_matrix that takes a sequence of integers and two additional numbers that specify the shape of the matrix (i.e., the number of rows and columns, respectively) to create a nested list representing the matrix filled by these integers row-wise. For example, calling create_matrix(*range(4, 19), rows=3, cols=5) returns a nested list representing the following 3 (rows) by 5 (columns) matrix: 4. 7 8. 9 10 11 12 13 14 15 16 17 18 Also include exception handling so that the function prints an error message if the number of intergers does not match the product of the number of rows and that of columns. For example, calling create_matrix(2, 3, 14, 15, rows=3, cols=2) prints The number of elememnts does not match the shape of the matrix. In [e]: # Write your function definition below matrixA = [[1, 2], [3, 4], [5, 6]]
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY