Python | metodo numpy.fill_diagonal()

Usando il metodo numpy.fill_diagonal() , puoi riempire le diagonali di un array numpy con il valore passato come parametro a numpy.fill_diagonal ( ) .

Sintassi: numpy.fill_diagonal (array, value)
Restituisce: Restituisce il riempito valore nella diagonale di un array.

Esempio n. 1:
In questo esempio, possiamo vedere che usando numpy.fill_diagonal ( ) possiamo ottenere le diagonali riempite con i valori passati come parametro.

# NumPy import

import numpy as np


# usando il metodo numpy.fill_diagonal()

array = np.array ([[ 1 , 2 ], [ 2 , 1 ]])

np .fill_diagonal (array, 5 )

print (array)

Output:

[[5 2]
[2 5]]

Esempio n. 2:

< /p>

Output:

[ [1 0 0]
[0 1 0]
[0 0 1]]

Ci auguriamo che questo articolo ti abbia aiutato a risolvere il problema. Oltre a Python | metodo numpy.fill_diagonal(), controlla altri argomenti relativi a Python functions.

Vuoi eccellere in Python? Consulta la nostra recensione dei migliori corsi online Python 2023. Se sei interessato alla scienza dei dati, controlla anche come imparare a programmare in R.

A proposito, questo materiale è disponibile anche in altre lingue:



Jan Ungerschaft

San Francisco | 2023-03-29

Semplice e chiaro. Grazie per la condivisione. Il mio punto debole è sempre stato il Python | metodo numpy.fill_diagonal() e altri problemi con il Python functions 😁. Tornerò domani con un feedback

Walter OConnell

Warsaw | 2023-03-29

Semplice e chiaro. Grazie per la condivisione. Il mio punto debole è sempre stato il Python | metodo numpy.fill_diagonal() e altri problemi con il Python functions 😁. Non sono proprio sicuro che sia il metodo migliore

Ken OConnell

San Francisco | 2023-03-29

Python functions è tutto un po' confuso 😭 Python | metodo numpy.fill_diagonal() non è l'unico problema che ho riscontrato. Tornerò domani con un feedback

Shop

Gifts for programmers

Learn programming in R: courses

$FREE
Gifts for programmers

Best Python online courses for 2022

$FREE
Gifts for programmers

Best laptop for Fortnite

$399+
Gifts for programmers

Best laptop for Excel

$
Gifts for programmers

Best laptop for Solidworks

$399+
Gifts for programmers

Best laptop for Roblox

$399+
Gifts for programmers

Best computer for crypto mining

$499+
Gifts for programmers

Best laptop for Sims 4

$

Latest questions

PythonStackOverflow

Common xlabel/ylabel for matplotlib subplots

1947 answers

PythonStackOverflow

Check if one list is a subset of another in Python

1173 answers

PythonStackOverflow

How to specify multiple return types using type-hints

1002 answers

PythonStackOverflow

Printing words vertically in Python

909 answers

PythonStackOverflow

Python Extract words from a given string

798 answers

PythonStackOverflow

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

606 answers

PythonStackOverflow

Python os.path.join () method

384 answers

PythonStackOverflow

Flake8: Ignore specific warning for entire file

360 answers


Wiki

Python | How to copy data from one Excel sheet to another

Common xlabel/ylabel for matplotlib subplots

Check if one list is a subset of another in Python

How to specify multiple return types using type-hints

Printing words vertically in Python

Python Extract words from a given string

Cyclic redundancy check in Python

Finding mean, median, mode in Python without libraries

Python add suffix / add prefix to strings in a list

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

Python - Move item to the end of the list

Python - Print list vertically

# NumPy import

import numpy as np

< br /> # usando il metodo numpy.fill_diagonal ()

array = np.zeros (( 3 , 3 ), int )

np.fill_diagonal (array, 1 )

print (array)