⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 printpost.m

📁 Speaker Verification Toolbox
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -