?? f_getmatfile.m
字號:
function [user,path] = f_getmatfile (caption,default);
%F_GETNATFILE: Prompt the user for the name of an M-file function
%
% Usage: [user,path] = f_getmatfile (caption,default)
%
% Inputs:
% caption = prompt string
% default = string containing name of default MAT-file
% Outputs:
% user = string containing name of MAT-file
% path = string containing path of MAT-file
%
% Note: If cancel button is choosen, user = path = 0
%
% See also: F_GETMFILE
ver = version;
if all(ver(1:3) == '6.1')
[user,path] = uigetfile ('*.mat',caption);
else
[user,path] = uigetfile ('*.mat',caption,default);
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -