5

Currently in MatLab 2012a the color of user variables e.g. rhoc, qin, qout etc. and reserved Functions e.g. imagesc, Figure, xlabel, caxis etc. IS the same i.e. BLACK, would be nice if I can change it - I am a new learner and it would be SO nice if I can differentiate them. Please help - perhaps this is easy for you. Please answer ASAP. Thanks in advance.

4

2 回答 2

1

为了详细说明我上面的评论——我使用 Sublime Text 2 作为我的代码编辑器,它看起来有点像这样。

请注意,所有 Matlab 关键字 ( for,ifend) 和内置函数 ( fprintf, datestr) 都以红色突出显示。字符串为黄色,字符串中的数字文字和格式说明符为紫色。

用户定义的变量 ( businessDate, t, T, binnedData) 显示为白色,注释显示为灰色。

在此处输入图像描述

于 2013-10-29T09:54:08.180 回答
1

这样的语法高亮是不可能的。您可以将变量命名为与内置函数相同的名称。简单的例子:

eval(char([105   109    97   103   101   115    99   114    61    49    50]))
imagescr

在这种情况下,需要执行代码以实现 imagescr 为“12”。

于 2013-10-29T09:47:28.790 回答