get_matlab_bgl_options.m
来自「The MatlabBGL library fills a hole in Ma」· M 代码 · 共 20 行
M
20 行
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 + =
减小字号Ctrl + -
显示快捷键?