标签列表受保护-Mathematica-多变量矩阵方程

时间:2019-04-29 16:02:46

标签: list function tags wolfram-mathematica

这是我的代码及其产生的错误。

我的函数有两个输入,输出是一个矩阵,其条目以输入为单位。

我完成了与典型函数相同的操作,但是之前从未对矩阵进行过此操作。

In[390]:= 
RotMat[B_] := {{Cos[B], Sin[B]}, {-Sin[B], 
   Cos[B]}}

In[391]:= M1 := {{Exp[I*G], 0}, {0, 1}}

In[392]:= M2 := {{0, 0}, {0, 1}}

In[393]:= Qy := Exp[I*Pi/4]*{{1, 0}, {0, -I}}

In[394]:= Qx := Exp[-I*Pi/4]*{{1, 0}, {0, I}}

In[395]:= 
TransformX[A1_ , T1_] := 
 RotMat[-A1].M1.RotMat[A1].\
Qx.RotMat[-T1].M2.RotMat[\
T1]

During evaluation of In[395]:= SetDelayed::write: Tag List in {{0,I E^(-((I \[Pi])/4)) (-Cos[A] Sin[A]+E^(I G) Cos[A] Sin[A])},{0,I E^(-((I \[Pi])/4)) (Cos[A]^2+E^(I G) Sin[A]^2)}}[A1_,T1_] is Protected.

Out[395]= $Failed

我尝试使用更简单的多变量矩阵函数进行故障排除,但没有任何错误

In[413]:= f[foo_, bar_] := {{foo, bar}, {bar, foo}}

In[414]:= f[1, 2]

Out[414]= {{1, 2}, {2, 1}}

In[415]:= g[foo_, bar_] := foo + bar
g[1, 2]

Out[416]= 3

1 个答案:

答案 0 :(得分:0)

b3m2a1提供了我需要的建议。谢谢,很大的帮助。

我需要在TransformX上方放置Clear [TransformX],这样在我重新运行代码时不会有麻烦。