代码拉取完成,页面将自动刷新
function [ varargout ] = minmaxsubd( varargin )
%MINMAXSUBD Calculate subdomain minima and maxima.
%
% [ MIN_VAL, MAX_VAL, MIN_COORD, MAX_COORD ] = MINMAXSUBD( S_EXPR, PROB, IND_S, IND_C, I_CUB, SOLNUM )
% Evaluates the mimimum and maximum value of expression S_EXPR over the
% subdomains indicated in IND_S or alternatively the cells in IND_C.
% PROB is a valid finite element problem struct. Returns the minima and
% maxima in MIN_VAL and MAX_VAL, and the corresponding coordinates in
% MIN_COORD and MAX_COORD.
%
% Input Value/[Size] Description
% -----------------------------------------------------------------------------------
% s_expr string Expression to evaluate
% prob struct Finite element problem struct
% ind_s [1,n_subd] Subdomain numbers (default all)
% ind_c [1,n_cells] Cell indices (default all)
% i_cub scalar Evaluation point rule (default 2)
% solnum scalar {n_sols} Solution number/time to evaluate
% .
% Output Value/[Size] Description
% -----------------------------------------------------------------------------------
% min_val scalar Minimum value of expression
% max_val scalar Maximum value of expression
%
% See also MINMAXBDR, INTSUBD, INTBDR
% Copyright 2013-2019 Precise Simulation, Ltd.
if( ~nargin && ~nargout ), help minmaxsubd, return, end
varargout = cell( 1, nargout );
[varargout{:}] = featool( 'feval', 'minmaxsubd', varargin{:} );
if( ~nargout ), clear varargout; end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。