Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import numpy as np
- def generate_random_matrix(width, height):
- random_matrix = np.random.rand(height, width) * 2 - 1
- print("\nСгенерированная матрица:")
- print(random_matrix)
- print(f"\nМаксимальное значение: {np.max(random_matrix):.4f}")
- print(f"Минимальное значение: {np.min(random_matrix):.4f}")
- if __name__ == "__main__":
- width = int(input("Введите ширину матрицы >>> "))
- height = int(input("Введите высоту матрицы >>> "))
- generate_random_matrix(width, height)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement