min.m

来自「matlab 多参数积分工具箱 multivariable calculus」· M 代码 · 共 10 行

M
10
字号
function y=min(V)
%MIN  Smallest values.
%   MIN(V) returns the smallest values of the elements
%   of the vector function V.
%
%   See also MAX.

% Copyright (c) 2001-04-17, B. Rasmus Anthin.

y=[min(vec2sca(V,1)) min(vec2sca(V,2)) min(vec2sca(V,3))];

⌨️ 快捷键说明

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