来自 Mathematica 代码的等效 MATLAB 代码

Equivalent MATLAB code from the Mathematica code

我在 Mathematica 中有以下内容

n=5;
Xt = Table[t^i, {i, 0, n}]

Mathematica 输出如下:

{1, t, t^2, t^3, t^4, t^5}

我想要等效的 MATLAB 代码。请注意 t .

的符号表示
>> syms t;
>> n = 5;
>> Xt = t.^(0:n) 

Xt =

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