Python | sympy.Matrix.row () метод
Опубликовано: 12 Апреля, 2022
With the help of sympy.Matrix.row() method, we can extract the rows of the matrix.
Syntax :
sympy.Matrix.row()
Return : Return the row of a matrix.
Example #1 :
In the given example we can see that the
sympy.Matrix().row() method is used to extract the rows of a matrix.# Import all the methods from sympyfrom sympy import * # use the row() method for matrixgfg_val = Matrix([[1, 2], [2, 1]]).row(1) print(gfg_val) |
Output :
[2, 1]
Example #2 :
from sympy import * # use the row() method for matrixgfg_val = Matrix([[1, 2], [2, 3], [23, 45]]).row(2) print(gfg_val) |
Выход :
[23, 45]
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.