在Mathematica中,
答案 0 :(得分:9)
版本6.0及更高版本包含一个新功能ConstantArray
来完成此操作,并且比使用Table
更有效:
In[2]:= ConstantArray[0,10]
Out[2]= {0,0,0,0,0,0,0,0,0,0}
此处的文件:
http://reference.wolfram.com/mathematica/ref/ConstantArray.html
答案 1 :(得分:3)
在Mathematica中,列表和向量之间没有区别。您可以使用Table
函数生成长度为n的列表:
x = Table[0, {n}]
(* If n was 4, x would now be the list {0, 0, 0, 0} *)