?? read_mat.m
字號:
% Script file name: read_mat.m
%
% Purpose:
% This file uses a uigetfile dialog box to get the
% name of a MAT file, and then loads that file into
% the workspace.
%
[filename, pathname] = uigetfile('*.mat','Load MAT File');
if filename ~= 0
load([pathname filename])
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -