📄 get_matlab_bgl_options.m
字号:
function [trans check full2sparse] = get_matlab_bgl_options(options)
%
% Internal private function.
%
% Example:
% Don't use this function!
%
doptions = set_matlab_bgl_default();
if (nargin>0)
options = merge_structs(options, doptions);
else
options = doptions;
end;
trans = ~options.istrans;
check = ~options.nocheck;
full2sparse = options.full2sparse;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -