如何将Matlab的boolean()函数转换为Octave函数?

时间:2018-01-02 01:02:22

标签: matlab boolean octave

ftype = boolean([1,1,1,0]); 
% boolean indicator to select feature types

我有上面的代码,并且boolean()函数在我的八度音程中不起作用。

如何将Matlab的boolean()函数转换为Octave函数?

2 个答案:

答案 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

OctaveMatlab支持逻辑功能: