Перейти к содержимому

Как создать нулевую матрицу python

  • автор:

Как создать нулевую матрицу python

In this article, we will discuss how to create an array of zeros in Python. In array items are stored at contiguous memory locations and here we will try to add only Zeros into the array with different methods.

Here we will cover different approaches to creating a zero’s element array. The different approaches that we will cover in this article are:

  • Using simple multiplication
  • Using loop
  • Using List comprehension
  • Using the In-Build method numpy.zeros() method
  • Using itertools.repeat() Function
  • using the bytearray

Method 1: Using simple multiplication

In this example, we are multiplying the array of zero to 9. In return, we will get an array with 9 elements of 0’s.

Python3

Output:

Method 2: Using a loop

In this example, we are creating a 0’s array using a for loop of range from 0 to 10.

Python3

Output:

Method 3: Using List comprehension

Example 1: Creating 1D array using list comprehension

As we know here for loop will generate such a list, and we iterate zero within the list till the given range.

Python3

Output:

Example 2: Creating 2D array using list comprehension

In this example, we are creating a 2-D array using a list comprehension in python to create 0’s of 5 rows and 10 columns.

Python3

Output:

Method 4: Using the In-Build method numpy.zeros() method

In this example, we are creating a NumPy array with zeros as the numpy.zeros() function is used which returns a new array of given shape and type, with zeros.

Python3

Output:

In the output, i4 specifies 4 bytes of integer data type, whereas f8 specifies 8 bytes of float data type.

Method 5: Using itertools.repeat() Function

Itertools module is a memory-efficient tool that is used either by itself or in combination to form iterator algebra.

Here we create an iterator using repeat() function, this function takes the value as its first argument, and then the second argument take the number of repetition of the values.

Below the example, we take 0 as a value and the second parameter 5 is the number of repetitions and then convert the temp_var into list.

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *