Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะค้นหาผลรวมขององค์ประกอบทั้งหมดของเมทริกซ์ที่กำหนดโดยใช้ Numpy ได้อย่างไร


ในโปรแกรมนี้ เราจะเพิ่มเงื่อนไขทั้งหมดของ numpy matrix โดยใช้ฟังก์ชัน sum() ในไลบรารี numpy ก่อนอื่นเราจะสร้างเมทริกซ์ numpy แบบสุ่ม จากนั้นเราจะได้ผลรวมขององค์ประกอบทั้งหมด

อัลกอริทึม

Step 1: Import numpy.
Step 2: Create a random m×n matrix using the random() function.
Step 3: Obtain the sum of all the elements in the matrix using the sum() function.

โค้ดตัวอย่าง

import numpy as np

matrix = np.random.rand(3,3)
print("The numpy matrix is: \n",matrix)
print("\nThe sum of the matrix is: ", np.sum(matrix))

ผลลัพธ์

The numpy matrix is:
[[0.66411969 0.43672579 0.48448593]
 [0.76110384 0.35869136 0.51509622]
 [0.22408857 0.17984855 0.33566272]]

The sum of the matrix is:  3.9598226605128524