资源简介
想用matlab基本功能,但又觉得现在版本安装包太大,占系统,可以用用这个。
代码片段和文件信息
%MATLABRC Master startup M-file.
% MATLABRC is automatically executed by MATLAB during startup.
% It establishes the MATLAB path sets the default figure size
% and sets a few uicontrol defaults.
%
% On multi-user or networked systems the system manager can put
% any messages definitions etc. that apply to all users here.
%
% MATLABRC also invokes a STARTUP command if the file ‘startup.m‘
% exists on the MATLAB path.
% Copyright (c) 1984-98 by The MathWorks Inc.
% $Revision: 1.94 $ $Date: 1998/08/24 19:53:59 $
% Set up path.
if exist(‘pathdef‘‘file‘)
matlabpath(pathdef);
end
cname = computer;
% Set the default figure position in pixels.
% On small screens make figure smaller with same aspect ratio.
screen = get(0 ‘ScreenSize‘);
width = screen(3);
height = screen(4);
if screen(3:4) ~= [1 1] % don‘t change default if screensize == [1 1]
if all(cname(1:2) == ‘PC‘)
if height >= 500
mwwidth = 560; mwheight = 420;
if(get(0‘screenpixelsperinch‘) >= 116) % large fonts
mwwidth = mwwidth * 1.2;
mwheight = mwheight * 1.2;
end
else
mwwidth = 560; mwheight = 375;
end
left = (width - mwwidth)/2;
bottom = height - mwheight -90;
else
if height > 768
mwwidth = 560; mwheight = 420;
left = (width-mwwidth)/2;
bottom = height-mwheight-90;
else % for screens that aren‘t so high
mwwidth = 512; mwheight = 384;
left = (width-mwwidth)/2;
bottom = height-mwheight-76;
end
end
rect = [ left bottom mwwidth mwheight ];
set(0 ‘defaultfigureposition‘rect);
end
colordef(0‘white‘) % Set up for white defaults
% Make uicontrols uimenus and lines look better on monochrome displays.
if get(0‘ScreenDepth‘)==1
set(0‘DefaultUIControlBackgroundColor‘‘white‘);
set(0‘DefaultAxesLinestyleOrder‘‘-|--|:|-.‘);
set(0‘DefaultAxesColorOrder‘[0 0 0]);
set(0‘DefaultFigureColor‘[1 1 1]);
end
%% For European countries using A4 paper the following line should
%% be uncommented
%set(0‘DefaultFigurePaperType‘‘a4‘)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 343 2016-02-28 16:24 使用说明.htm
目录 0 2012-07-25 20:37 Matlab5.3_lite\
文件 398848 1999-01-15 06:23 Matlab5.3_lite\gui.dll
文件 99328 2012-07-25 16:36 Matlab5.3_lite\hardcopy.dll
文件 748032 2012-07-29 18:30 Matlab5.3_lite\hg.dll
文件 34304 1999-01-15 18:09 Matlab5.3_lite\libut.dll
文件 880128 1998-06-10 14:44 Matlab5.3_lite\mapleoem.dll
文件 1043968 2012-08-01 12:21 Matlab5.3_lite\matlab.exe
文件 601 2012-07-13 14:10 Matlab5.3_lite\matlab.exe.manifest
文件 101 2016-04-01 15:35 Matlab5.3_lite\matlab.ini
文件 940304 1997-08-24 20:25 Matlab5.3_lite\mfc42.dll
文件 51200 2012-07-28 20:45 Matlab5.3_lite\mpath.dll
文件 68608 2012-07-25 14:42 Matlab5.3_lite\mwoles05.dll
文件 352768 1999-01-15 06:22 Matlab5.3_lite\numerics.dll
目录 0 2012-07-31 21:55 Matlab5.3_lite\toolbox\
目录 0 2012-07-31 21:55 Matlab5.3_lite\toolbox\local\
文件 2139 2012-07-25 13:36 Matlab5.3_lite\toolbox\local\matlabrc.m
文件 1259 2012-08-01 12:28 Matlab5.3_lite\toolbox\local\pathdef.m
目录 0 2012-07-31 21:55 Matlab5.3_lite\toolbox\matlab\
目录 0 2012-07-31 21:55 Matlab5.3_lite\toolbox\matlab\datafun\
目录 0 2012-07-31 21:55 Matlab5.3_lite\toolbox\matlab\datafun\@cell\
文件 547 1999-01-29 03:54 Matlab5.3_lite\toolbox\matlab\datafun\@cell\sort.m
目录 0 2012-07-31 21:55 Matlab5.3_lite\toolbox\matlab\datafun\@uint8\
文件 323 1999-01-29 03:54 Matlab5.3_lite\toolbox\matlab\datafun\@uint8\conv2.m
文件 326 1999-01-29 03:54 Matlab5.3_lite\toolbox\matlab\datafun\@uint8\convnc.m
文件 332 1999-01-29 03:54 Matlab5.3_lite\toolbox\matlab\datafun\@uint8\ifft.m
文件 2968 1999-01-29 03:54 Matlab5.3_lite\toolbox\matlab\datafun\Contents.m
文件 1214 1999-01-29 03:54 Matlab5.3_lite\toolbox\matlab\datafun\conv.m
文件 1097 1999-01-29 03:54 Matlab5.3_lite\toolbox\matlab\datafun\conv2.m
文件 1944 1999-01-29 03:54 Matlab5.3_lite\toolbox\matlab\datafun\convn.m
文件 9758 1999-01-29 03:54 Matlab5.3_lite\toolbox\matlab\datafun\convnc.c
............此处省略1686个文件信息
评论
共有 条评论