代码拉取完成,页面将自动刷新
function [ varargout ] = evalexpr( varargin )
%EVALEXPR Evaluates an expression in specified points.
%
% [ VEVAL ] = EVALEXPR( S_EXPR, XP, PROB, SOLNUM, VEC_EVAL, TOL )
% Evaluates the expression S_EXPR in the points specified in XP (in
% global x/y/z-coordinates). PROB is a valid finite element problem
% struct. The VEC_EVAL flag (default true) toggles vectorized
% evaluation for dof variables with P0-P2 fem shape functions.
% TOL is a tolerance used by ismembertol/deduplicate to determined
% which if any evaluation points in XP are aligned with grid points.
%
% Input Value/[Size] Description
% -----------------------------------------------------------------------------------
% s_expr string String expression to evaluate
% xp [n_sdim,n_xp] Coordinates of evaluation points
% prob struct Problem definition struct
% solnum scalar {n_sols} Solution number/time to evaluate
% vec_eval logical {true} Use vectorized evaluation for dep. variables
% tol scalar {1e-5} Tolerance for evalation/grid points
% .
% Output Value/(Size) Description
% -----------------------------------------------------------------------------------
% vEval [n_xp,1] Output vector of evaluated values
% Copyright 2013-2019 Precise Simulation, Ltd.
if( ~nargin && ~nargout ), help evalexpr, return, end
varargout = cell( 1, nargout );
[varargout{:}] = featool( 'feval', 'evalexpr', varargin{:} );
if( ~nargout ), clear varargout; end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。