freeCodeCamp/guide/chinese/mathematics/intro-to-matrices/index.md

23 lines
1022 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Intro to Matrices
localeTitle: 矩阵介绍
---
## 矩阵介绍
矩阵由2D阵列组成或者更好由矩形阵列组成。下面你可以看到它的组织方式。
![替代文字](https://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/Matrix.svg/494px-Matrix.svg.png)
它由行和列组成。因此如果你想要下面矩阵的数字7你需要在posicion2,3第二行第三列上获得元素。
![替代文字](https://wikimedia.org/api/rest_v1/media/math/render/svg/55375914df4213b621f22cb1e5a0d6eb09af29df)
通常的操作适用于矩阵但是对相同位置的元素进行加法和减法因此两个矩阵需要具有相同的大小。乘法是不同的因此矩阵A x矩阵BA需要具有相同的B转置大小。
转置是矩阵的行和列的操作。
![替代文字](https://wikimedia.org/api/rest_v1/media/math/render/svg/51f6dba024e104b412ed0562163ca9a11fcb9463)
#### 更多信息:
[维基百科](https://en.wikipedia.org/wiki/Matrix_(mathematics))