标签: matlab wolfram-mathematica
我在Mathematica中有以下内容
n=5; Xt = Table[t^i, {i, 0, n}]
Mathematica输出以下内容:
{1, t, t^2, t^3, t^4, t^5}
我想要等效的MATLAB代码。请注意t的符号表示。
t
答案 0 :(得分:1)
>> syms t; >> n = 5; >> Xt = t.^(0:n) Xt = [ 1, t, t^2, t^3, t^4, t^5]