Actions
Bug #6966
closedVector#norm は複素数ベクトルの正しいノルムを返さない
Description
Vector#norm は,単に成分の自乗和の正の平方根を取っていますが,これだと成分が複素数のときに正しい値を返しません。成分の絶対値自乗和の正の平方根を取るべきではないでしょうか。
Vector[Complex(0, 1), 1].norm
=> 0.0
Vector[Complex(0, 1), 0].norm
=> Math::DomainError: Numerical argument is out of domain - "sqrt"
Actions
Like0
Like0