Undefined function 'max' for input arguments of type 'cell'.

对上一步结果中的向量进行求最大值计算时,出现问题Undefined function 'max' for input arguments of type 'cell'.


通过查询可知,MATLAB是一种无类型语言,所以看不出Com具体是什么类型。其实根据错误提示可知Com是一个cell类型,而max()作用在向量。

可按如下方法改正:

1)查看类型和数据

Undefined function 'max' for input arguments of type 'cell'._第1张图片

2)转换为向量格式

3)在进行求最大值

Undefined function 'max' for input arguments of type 'cell'._第2张图片




你可能感兴趣的:(matlab)