mathematica中函数中的下标变量问题

时间:2014-03-21 17:36:26

标签: wolfram-mathematica

mathematica的新手,当我在mathematica中制作下标函数时,我遇到了麻烦。

举个例子:

Needs["Notation`"]
Symbolize[
ParsedBoxWrapper[
SubscriptBox["x", "1"]]];
Symbolize[
ParsedBoxWrapper[
SubscriptBox["x", "2"]]];

Subscript[testfunc, Subscript[x, 1] : _, Subscript[x, 2] : _, j_] := 
  Subscript[x, 1]*Subscript[x, 2]*Subscript[x, j];
Subscript[testfunc, 10, 5, 1]

输出: 50下标[x,1]

但是,我真正想要的是为函数设置x_1和x_2以及输出500(x_1 ^ 2 * x_2)的值。我该怎么做?

0 个答案:

没有答案