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