将单位矩阵提升为幂


10

是否可以将单位矩阵提升为幂?如果尝试使用^运算符,则会收到错误消息。

x = [2 0 ; 0 2]
x^2 # this works fine
(2I)^2 #throws MethodError: no method matching ^(::UniformScaling{Int64}, ::Int64)

注意:我知道我可以简单地做(2^2)I,但是在某些情况下无法做到这一点(例如,当将矩阵传递给引发矩阵的函数时)。

Answers:


10

这只是UniformScaling对象缺少的方法。如果您可以解决一个问题,然后在以后的版本中添加它,那就太好了。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.