www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/SmallestVectorElementExample.m

    %% Smallest Vector Element
% Create a vector and compute its smallest element.

% Copyright 2015 The MathWorks, Inc.

A = [23 42 37 15 52];
M = min(A)