/usr/share/freemat/toolbox/graph/cla.m is in freemat-data 4.0-5build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | % CLA CLA Clear Current Axis
%
% Usage
%
% Clears the current axes. The syntax for its use is
%
% cla
%
% Copyright (c) 2002-2006 Samit Basu
% Licensed under the GPL
function cla
set(gca,'children',[]);
set(gca,'xlimmode','auto');
set(gca,'ylimmode','auto');
set(gca,'zlimmode','auto');
set(gca,'xscale','linear');
set(gca,'yscale','linear');
set(gca,'zscale','linear');
set(gca,'xtickmode','auto');
set(gca,'ytickmode','auto');
set(gca,'ztickmode','auto');
set(gca,'xticklabelmode','auto');
set(gca,'yticklabelmode','auto');
set(gca,'zticklabelmode','auto');
|