x nxn matrix python 3

danghieuminh

New member
..

Trong Python 3, bạn có thể tạo một ma trận X NXN bằng hàm `numpy.array ()`.Hàm `numpy.array ()` lấy một danh sách các danh sách làm đầu vào của nó, trong đó mỗi danh sách bên trong đại diện cho một hàng của ma trận.Ví dụ: mã sau tạo ma trận 3x3:

`` `Python
nhập khẩu NUMPY dưới dạng NP

Matrix = np.array ([[1, 2, 3], [4, 5, 6], [7, 8, 9]]))

in (ma trận)
`` `

`` `
[[1 2 3]
[4 5 6]
[7 8 9]]
`` `

Bạn cũng có thể tạo một ma trận với số không hoặc các số không sử dụng `numpy.zeros ()` và `numpy.ones ()` Các hàm, tương ứng.Ví dụ: mã sau đây tạo ra ma trận 3x3 của số không:

`` `Python
ma trận = np.zeros ((3, 3))

in (ma trận)
`` `

`` `
[[0 0 0]
[0 0 0]
[0 0 0]]
`` `

Mã sau đây tạo ra ma trận 3x3 của các mã:

`` `Python
ma trận = np.ones ((3, 3))

in (ma trận)
`` `

`` `
[[1 1 1]
[1 1 1]
[1 1 1]]
`` `

## hashtags

* #Python
* #matrix
* #Numpy
* #đại số tuyến tính
* #ndarray
=======================================
#Python #matrix #Numpy #Linear-algebra #ndarray ##How to create an X NXN matrix in Python 3

In Python 3, you can create an X NXN matrix using the `numpy.array()` function. The `numpy.array()` function takes a list of lists as its input, where each inner list represents a row of the matrix. For example, the following code creates a 3x3 matrix:

```python
import numpy as np

matrix = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])

print(matrix)
```

```
[[1 2 3]
[4 5 6]
[7 8 9]]
```

You can also create a matrix with zeros or ones using the `numpy.zeros()` and `numpy.ones()` functions, respectively. For example, the following code creates a 3x3 matrix of zeros:

```python
matrix = np.zeros((3, 3))

print(matrix)
```

```
[[0 0 0]
[0 0 0]
[0 0 0]]
```

The following code creates a 3x3 matrix of ones:

```python
matrix = np.ones((3, 3))

print(matrix)
```

```
[[1 1 1]
[1 1 1]
[1 1 1]]
```

## Hashtags

* #Python
* #matrix
* #Numpy
* #Linear-algebra
* #ndarray
 
Join ToolsKiemTrieuDoGroup
Back
Top
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock