Matlab中,a=[0 0.2 1 0 -5 9]在进行逻辑运算时,a相当于什么样的逻辑量?
问题描述:
Matlab中,a=[0 0.2 1 0 -5 9]在进行逻辑运算时,a相当于什么样的逻辑量?
答
logical(a) = [ 0 1 1 0 1 1];
是个逻辑向量.