⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 get_matlab_bgl_options.m

📁 The MatlabBGL library fills a hole in Matlab s suite of algorithms. Namely, it provides a rich set o
💻 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 + -