matlab 判断table是否为控
时间: 2023-07-30 19:09:03 浏览: 110
Routh_Table.m:劳斯-赫尔维茨代码-matlab开发
可以使用 `isempty` 函数来判断一个 table 是否为空。具体方法如下:
```matlab
if isempty(mytable)
disp('mytable is empty');
else
disp('mytable is not empty');
end
```
其中,`mytable` 是你要判断的 table 变量名。如果 `mytable` 为空,则输出 `'mytable is empty'`;否则,输出 `'mytable is not empty'`。
阅读全文