代码搜索:optional
找到约 6,947 项符合「optional」的源代码
代码结果 6,947
www.eeworm.com/read/195814/8129459
plc style.plc
# style.plc 1.11 - 3/2/94
# @(#)Copyright (C) 1987-1994 Verity, Inc.
#
# Example style.plc file with default policy settings.
# Everything is optional including the file itself.
# Note: all options ar
www.eeworm.com/read/144648/12778643
control
Source: afbackup
Build-Depends: cdbs, debhelper (>= 4.1.0), c-shell, zlib1g-dev, libssl-dev, gettext
Section: utils
Priority: optional
Maintainer: Torsten Werner
Standards-Version
www.eeworm.com/read/331444/12827777
m var2.m
% V = VAR2(MTX,MEAN)
%
% Sample variance of a matrix.
% Passing MEAN (optional) makes the calculation faster.
function res = var2(mtx, mn)
if (exist('mn') ~= 1)
mn = mean2(mtx);
end
if (isreal(
www.eeworm.com/read/140851/13058705
m plotgauss2d.m
function h=plotgauss2d(mu, Sigma)
% PLOTGAUSS2D Plot a 2D Gaussian as an ellipse with optional cross hairs
% h=plotgauss2(mu, Sigma)
%
h = plotcov2(mu, Sigma);
return;
%%%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/325790/13185079
m pyx.m
function pr=pyx(obj,y,x,t,u);
% Calculates p(y|x), ie the probability of y given x.
%
% Syntax: (* = optional)
%
% pr = pyx(model, y, x, t, u);
%
% In arguments:
%
% 1. model
% Model object.
www.eeworm.com/read/325790/13185166
m pyx.m
function pr=pyx(obj,y,x,t,u);
% Calculates p(y|x), ie the probability of y given x.
%
% Syntax: (* = optional)
%
% pr = pyx(model, y, x, t, u);
%
% In arguments:
%
% 1. model
% Model object.
www.eeworm.com/read/325790/13185227
m pyx.m
function pr=pyx(obj,y,x,t,u);
% Calculates p(y|x), ie the probability of y given x.
%
% Syntax: (* = optional)
%
% pr = pyx(model, y, x, t, u);
%
% In arguments:
%
% 1. model
% Model object.
www.eeworm.com/read/138798/13211639
m plotgauss2d.m
function h=plotgauss2d(mu, Sigma)
% PLOTGAUSS2D Plot a 2D Gaussian as an ellipse with optional cross hairs
% h=plotgauss2(mu, Sigma)
%
h = plotcov2(mu, Sigma);
return;
%%%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/318908/13466941
m disfrct.m
function y = Disfrct(f,a,p)
% Computes discrete fractional cosine transform
% of order a of vector f
% p (optional) is order of approximation, default N/2
% S-C Pei, M-H Yeh, IEEE Tr SP 49(6)2001,
www.eeworm.com/read/310212/13654644
m bilinear.m
function [zd, pd, kd, dd] = bilinear(z, p, k, fs, fp, fp1)
%BILINEAR Bilinear transformation with optional frequency prewarping.
% [Zd,Pd,Kd] = BILINEAR(Z,P,K,Fs) converts the s-domain transfer
%