exp_basic.m

来自「MATLAB Tutorial : For the beginners in 」· M 代码 · 共 56 行

M
56
字号
% clear variable
clear x y z
clear all
% Garbage collection
pack
% If the OUT OF MEMORY error message is encountered, there is
%    no more room in memory for new variables
    If the OUT OF MEMORY error message is encountered, there is
    no more room in memory for new variables
% load
load filename
load filename x y z
% Save
save filename
save filename x y z
% uses 8-digit ASCII form instead of binary.
save filename -ascii 
% to exit from Matlab
quit or exit
% DOS
dos('dos command')
% copy files
copyfile(source,destination)
% delete
delete filename
% make directory
mkdir name
% directories in path
path
addpath ......
rmpath ...

% To display message
disp('Matlab')

% File open
FID = FOPEN(FILENAME,PERMISSION,MACHINEFORMAT)
file identifier FID
fid=fopen('data1.mat','wt+','n');
        'r'     read
        'w'     write (create if necessary)
        'a'     append (create if necessary)
        'r+'    read and write (do not create)
        'w+'    truncate or create for read and write
        'a+'    read and append (create if necessary)
           
        'n' - local machine format  
        
% Close file           
fclose(fid);

% Print file   
% precision fields
FPRINTF(FID,FORMAT,DATA)
fprintf(fid,'%3.0f\t %2.4f\t %1.3f\t  \n', data_rec(ii,:));

⌨️ 快捷键说明

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