printpost.m

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

M
22
字号
function printPost(f)

% SYNTAX: printPost(f)
% This function does not output anything, but simply prints out all
% of the classes (A^mu, a^mu) to which the function f
% belongs. It uses isAmu and related functions.
% Note: if f is a member of A^mu and mu=n, where n is the number of
% variables, then f is also a member of A^Inf. Similarly for a^mu.
% Ilya Shmulevich; 02/04/02

f = f(:);
n = log2(length(f));

for mu = 2:n,
    if isAmu(f,mu)
        fprintf(1,'A^%d ',mu);
    end
    if isAmuSmall(f,mu)
        fprintf(1,'a^%d ',mu);
    end
end
fprintf(1,'\n');

⌨️ 快捷键说明

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