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

    %% Label x-Axis 
% Display |Population| beneath the _x_-axis.

% Copyright 2015 The MathWorks, Inc.


plot((1:10).^2)
xlabel('Population')
%% 
%