Create a Matrix (2D array) in NumPy Python | Module NumPy Tutorial - Part 03

preview_player
Показать описание
In this video we will talk about How to create a matrix (a 2D array) in python using the numpy module.

==================================
NumPy Module Tutorial Playlist for Machine Learning:
==================================

==================================
Source Code:
==================================
import numpy as np
[2,-3,1],
[2,0,-1],
[1,4,5]
])
print(A)
print(type(A))
print(A.shape)
Рекомендации по теме
Комментарии
Автор

Thank You for the help; couldn't find a video how to make one.

gamertag