Function Julia 1.4中未定义repmat的有效代理函数

Function Julia 1.4中未定义repmat的有效代理函数,function,julia,Function,Julia,我试图在Julia 1.4.1中使用repmat()函数。这是因为已知的repeat()的效率问题。但是,当我调用repmat时,会出现以下错误: julia> repmat ERROR: UndefVarError: repmat not defined 那么在这种情况下该怎么办呢?repeat对于您将使用repmat的情况不再慢,因此现在不推荐使用repmat。谢谢你@Oscar Smith

我试图在Julia 1.4.1中使用
repmat()
函数。这是因为已知的
repeat()
的效率问题。但是,当我调用
repmat
时,会出现以下错误:

julia> repmat
ERROR: UndefVarError: repmat not defined

那么在这种情况下该怎么办呢?

repeat
对于您将使用
repmat

的情况不再慢,因此现在不推荐使用repmat。谢谢你@Oscar Smith