我有一个矩阵W
,在 Matlab 中是类型的double
,在尝试运行时W_sf=squareform(W)';
出现以下错误:
Undefined function 'squareform' for input arguments of type 'double'.
squareform
我在使用转换W
为浮动后尝试运行single(W)
,但我仍然遇到相同的错误squareform
。我必须转换W
成的确切类型是什么,以及如何转换?
我有一个矩阵W
,在 Matlab 中是类型的double
,在尝试运行时W_sf=squareform(W)';
出现以下错误:
Undefined function 'squareform' for input arguments of type 'double'.
squareform
我在使用转换W
为浮动后尝试运行single(W)
,但我仍然遇到相同的错误squareform
。我必须转换W
成的确切类型是什么,以及如何转换?