- Hands-On Artificial Intelligence for Beginners
- Patrick D. Smith
- 71字
- 2021-06-10 19:33:44
Matrices
Matrices are two-dimensional lists of numbers that contain rows and columns. Typically, rows in a matrix are denoted by i, while columns are denoted by j.
Matrices are represented as:

We can easily create matrices in Python as NumPy arrays, much like we can with vectors:
matrix = np.array([[5,6], [6,9]])
The only different is that we are adding an additional vector to the array to create the matrix.
推薦閱讀
- Project 2007項(xiàng)目管理實(shí)用詳解
- 樂高機(jī)器人EV3設(shè)計(jì)指南:創(chuàng)造者的搭建邏輯
- Mastering D3.js
- 電腦上網(wǎng)直通車
- 21天學(xué)通Visual Basic
- STM32嵌入式微控制器快速上手
- OpenStack Cloud Computing Cookbook(Second Edition)
- Blender Compositing and Post Processing
- 愛犯錯(cuò)的智能體
- 網(wǎng)絡(luò)安全技術(shù)及應(yīng)用
- Mastering GitLab 12
- 經(jīng)典Java EE企業(yè)應(yīng)用實(shí)戰(zhàn)
- 嵌入式Linux系統(tǒng)實(shí)用開發(fā)
- 分布式Java應(yīng)用
- MySQL Management and Administration with Navicat