簡體   English   中英

類向量-兩個非特定維的向量的相乘

[英]Class vectors - multiplication of two vectors of non-specific dimension

class MyVector:
    def __init__(self, vector): # classic init 
        self.vector = vector 

    def get_vector(self):
        return self.vector

    def __mul__(self, other):
        for i in range(0, len(self.vector)): #cycle
           # if I did scalar_product += (self.vector[i] * other.vector[i]) here,
           # it didn't work
           scalar_product = (self.vector[i] * other.vector[i])
        return (scalar_product)    

if __name__ == "__main__":       #just testing program
    vec1 = MyVector([1, 2, 3, 4])
    vec2 = MyVector([4, 5, 6, 7])
    print(vec1.get_vector())
    print(vec2.get_vector())
    scalar_product = vec1*vec2
    print(scalar_product) # shows only 4*7 but not others

為了使該程序正常工作,我需要做什么? 現在,它只乘以最后一位數字,例如4 * 7,而不是其他兩位。

您需要首先定義標量積:

 def __mul__(self, other):
     scalar_product = 0 # or 0.0
     for i in range(0, len(self.vector)):
         scalar_product += self.vector[i] * other.vector[i]
     return scalar_product

您還應該返回MyVector類型的對象

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM