Random Matrix Generation

Follow along: Random Matrix Generation

The program launching process along with parameter settings are all simplified and set up on the Jupyter Notebook Environment.
  • Create a new *.ipynb file Jupyter Notebook
  • Fill in the content below in the newly created file
  • Follow and Execute the example codes
(The Jetson Board used for these examples are => Jetson Nano)
  • 3.random.py

import numpy as np

random_numbers = np.random.rand(3, 3)
print(random_numbers)
  • code progress

    1. Create a random matrix of size 3x3.

    2. Generated matrix output.

    3. The elements of the matrix are real numbers between 0 and 1.