ftype = boolean([1,1,1,0]);
% boolean indicator to select feature types
我有上面的代码,并且boolean()函数在我的八度音程中不起作用。
如何将Matlab的boolean()函数转换为Octave函数?
答案 0 :(得分:3)
我不确定你为什么要使用boolean
。它是Simulink的一部分,除了致电logical
之外别无其他。你应该在Matlab中使用logical
,而Octave有equivalent syntax。
答案 1 :(得分:2)
请改用:
ftype = logical([1,1,1,0]);
whos ftype;
Attr Name Size Bytes Class
==== ==== ==== ===== =====
ftype 1x4 4 logical
Octave
和Matlab
支持逻辑功能: