Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Python 中,我可以像这样创建一个空列表:
a = [None] * 5
但是在 DolphinDB 中,当我尝试运行它时:
a = take(NULL, 5)
解释器刚刚给出了错误信息:
不允许创建空向量
那么如何创建一个所有元素都为 NULL 的空向量呢?
也许你可以这样做:
array(int, 100, 100, NULL)
或者
bigarray(double,10000000,10000000,NULL)
其中NULL是向量中填充的默认值。
NULL
看一下这个