Haskell:无法推断由于使用“ cos”而引起的(浮动t)


只怕再见是故人
2025-03-17 12:10:51 (17天前)

我正在学习Haskell,我试图根据我在Internet上发现的资源来实现一些量子门。目前,我已经成功实现了Z门,X门,H门,但是实现旋转门时遇到了问题。

  1. U = [[cos t -sin t]
  2. [sin t cos t ]]

我写的代码:

  1. type Vector a = [a]
  2. type Matrix a = [Vector a]
  3. vectorToComplex :: Integral a => Vector a -> Vector (Complex Double)
  4. vectorToComplex = map (\i -> fromIntegral i:+0.0)
  5. matrixToComplex :: Integral a => Matrix a -> Matrix (Complex Double)
  6. matrixToComplex = map vectorToComplex
  7. --Z Gate
  8. gateZ :: Matrix (Complex Double)
  9. gateZ = matrixToComplex [[1,0],[0,-1]]

我尝试以与实现Z门相同的方式实现gateR(旋转门):
gateR :: Integral t => t -> Matrix (Complex Double) gateR t = matrixToComplex [[cos t,-sin t],[sin t,cos t]]
但是我遇到下一个错误,但我不太了解(我仍在学习该语言)。

  1. Could not deduce (Floating t) arising from a use of `cos'
  2. from the context (Integral t)
  3. bound by the type signature for
  4. gateR :: Integral t => t -> Matrix (Complex Double)
  5. at quantum.hs:66:8-44
  6. Possible fix:
  7. add (Floating t) to the context of
  8. the type signature for
  9. gateR :: Integral t => t -> Matrix (Complex Double)
  10. In the expression: cos t
  11. In the expression: [cos t, - sin t]
  12. In the first argument of `matrixToComplex', namely
  13. `[[cos t, - sin t], [sin t, cos t]]'
2 条回复
  1. 1# 春风助手 | 2020-08-21 15-34

    cos并且sin只能接受一个Floating参数,但是for的类型签名gateR说这t是一个Integral类型,并非所有Integrals都是Floating。请变更类型签名gateR或转换t中gateR使用fromIntegral。

登录 后才能参与评论