当前位置:  开发笔记 > 开发工具 > 正文

MATLAB环境调整

如何解决《MATLAB环境调整》经验,为你挑选了4个好方法。

您如何调整MATLAB环境以更好地满足您的需求?每个答案一个调整.



1> AlexC..:

我运行"格式紧凑"来删除所有令人沮丧的空白行间隔我的输出.哦,这么简单,但让它对我来说更好.



2> Andrew Janke..:

我使用了一个函数idetitle(),它可以改变Matlab GUI本身的窗口标题.在我运行多个Matlab进程的开发环境中很有用,可以在源代码或模型运行的不同分支上运行.有时我会将PID放在窗口标题中,以便在Process Explorer中轻松查找资源使用情况.

function idetitle(Title)
%IDETITLE Set Window title of the Matlab IDE
%
% Examples:
% idetitle('Matlab - Foo model')
% idetitle(sprintf('Matlab - some big model - #%d', feature('getpid')))

win = appwin();
if ~isempty(win)
    win.setTitle(Title);
end

function out = appwin()
%APPWIN Get main application window

wins = java.awt.Window.getOwnerlessWindows();
for i = 1:numel(wins)
    if isa(wins(i), 'com.mathworks.mde.desk.MLMainFrame')
        out = wins(i);
        return
    end
end

out = [];



3> 小智..:

我将MATLAB编辑器中的默认字体更改为10点ProFont(可以在这里获得),这样我就可以长时间编写代码而不会让自己头疼眼睛.



4> Matt..:

我使用选项运行Matlab -nodesktop -nojvm.这样它只是放在一个终端中,我可以使用我最喜欢的文本编辑器来实现我的内容.

尽管如此,你确实错过了一些杀手级功能.

推荐阅读
李桂平2402851397
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有