Advertisement
Orrin19

Untitled

Mar 11th, 2024
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.60 KB | None | 0 0
  1. import numpy as np
  2.  
  3.  
  4. def generate_random_matrix(width, height):
  5.     random_matrix = np.random.rand(height, width) * 2 - 1
  6.  
  7.     print("\nСгенерированная матрица:")
  8.     print(random_matrix)
  9.  
  10.     print(f"\nМаксимальное значение: {np.max(random_matrix):.4f}")
  11.     print(f"Минимальное значение: {np.min(random_matrix):.4f}")
  12.  
  13.  
  14. if __name__ == "__main__":
  15.     width = int(input("Введите ширину матрицы >>> "))
  16.     height = int(input("Введите высоту матрицы >>> "))
  17.     generate_random_matrix(width, height)
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement