isainfsmall.m

来自「Speaker Verification Toolbox」· M 代码 · 共 11 行

M
11
字号
function tf = isAinfSmall(f,varargin)

% SYNTAX: tf = isAinf(f,[A])
% This function takes a column vector representing a truth table of a Boolean function
% and determines whether or not this function belongs on the class <a^Inf>. The second 
% optional parameter (A) is the matrix that can be passed to speed things up, so it 
% doesn't have to be generated every time. A can be generated as: A = ~ff2n(n)'; 
% where n is the number of variables of the Boolean function.
% Ilya Shmulevich; 02/04/02

tf = isAinf(~flipud(f),varargin{:});

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?