来自Mathematica代码的等效MATLAB代码

时间:2015-08-01 16:49:41

标签: 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的符号表示。

1 个答案:

答案 0 :(得分:1)

>> syms t;
>> n = 5;
>> Xt = t.^(0:n) 

Xt =

[ 1, t, t^2, t^3, t^4, t^5]