Source Insight 阅读Matlab程序

<span style="font-size:14px;">step 1:  add "matlab" language:

(1) options -> Preferences -> language ->Add  : enter "matlab"
(2) select "matlab" in the "Language" tab -> Import : import file "matlab.clf"
(3) "matlab"  -> Keywords -> Import:  import file "keywords.txt"
(4) click "OK".."OK".

step 2: let .m file could be recognized and parzed.

(1) option -> documents options -> Add Type  : enter "matlab M-file"
(2) Document Type -> "matlab M-file"
(3) File filter-> enter "*.m" and choose "include when adding to projects"
(4) Language ->select "matlab" and click "Language", choose "MATLAB"  -> OK
(5) close the tab

finished.

</span>

时间: 2024-11-10 13:50:04

Source Insight 阅读Matlab程序的相关文章

利其器:如何使用source insight阅读android部分源码

? ? 为了便于学习这个安卓驱动,需要阅读源码加深印象,但是安卓源码太大了,所以我们只拷贝三个目录到windows下面用source insight查看.怎么知道拷贝哪三个目录呢?好吧,是老师告诉的:frameworks.hardware.system.至于为什么是这三个目录,可以查书看看源码各个目录的作用就好了. 注意:不要贪多,源码用到哪些就拷贝哪些,如果你的电脑性能好,可以考虑索引全部源码,但是没必要,学习不就是抓关键点么. ? ? 好了,首先到虚拟机(任意开发环境均可)下面,把这三个目录

【Android 系统开发】使用 Source InSight 阅读 Android 源码

1. 安装 Source Insight (1) Source Insight 相关资源 安装相关资源 : -- 下载地址 : http://www.sourceinsight.com/down35.html; -- 注册码 : SI3US-361500-17409 . 2. 导入 Android 源码 导入 Android 源码 : -- 创建工程 : Project -> New Project, 输入一个工程名, 文件路径设置为 Android 源码路径, 这个一定要注意, 否则会拷贝整个

使用Source Insight阅读wrk源码

1. 新建项目: Project -> New Project, 填一项目名称 2. 选择源码位置: 3. 增加文件到项目,选好对应的文件夹,点击"Add Tree" 4. 查找函数: F7, Source Insight需要分析一会 5. 输入需要查找的函数,如NtSuspendProcess 6. 查看函数的调用关系,View -> Relation Window 鼠标指向的函数,Relation Window会实时显示出被调用函数直接的关系

windows和ubuntu虚拟机设置共享文件夹,在windows中用source insight阅读和编写代码,在linux中用交叉编译工具编译。

1:公司有个HISI3536的项目,需要用到交叉编译工具,因此需要安装ubuntu虚拟机,然后:在ubuntu中用交叉编译工具进行编译,刚开始自己是把整个的工程文件和代码都放到了ubuntu中,在ubuntu中进行代码的阅读和编写,然后在ubuntu中进行编译,然后还要把编译完成的可执行程序上传到windows中再下载到设备中.麻烦而且容易出错. 2:项目完成之后觉得这样做太麻烦了,想找一下有没有简单点的方法,突然想起来之前用过设置文件夹共享的方式,于是设置了文件夹共享,然后代码阅读和编写都在w

source insight Confirm by typing ‘yes&#39; below&quot;、&quot;has been changed outside of the editor. Do you want to reload the file?&quot;、“

阅读内核代码习惯和喜欢使用source insight.如果能在source insight上修改内核代码,同时又不需要把修改的内核代码再拷贝到虚拟ubuntu上去那就方便了.于是想通过用samba与xp共享的方式来实现.即xp.samba.虚拟ubuntu9.10等工具. 事实上是可以的,用source insight把在samba上共享的内核源文件建立了工程,速度上不是特别慢,可以接受.但在Source insight上修改通过samba共享ubuntu上内核源程序文件出现了"Confirm

代码从记事本拷贝到 source insight 工程出现中文乱码解决办法

1.代码从记事本拷贝到source insight 工程,此时出现乱码,解决办法,将输入法切换到中午输入法即可. 2.source insight 阅读VC++源码,注释为乱码解决方案 1.options->preferences->Syntax Formatting->Styles: 2.在Style Name 选择 Comment,再对其Font Name 选择Pick,然后再选择"新宋体". 3.source insight 阅读Linux源码,注释为乱码解决方

source insight软件如何知道当前打开的文件所在的路径

问题: 当用source insight 软件编写程序时,忘了我们写的程序保存的位置时该怎么办? 答:在打开的source insight软件窗口中点击菜单栏中的"Project"选项---->Project setting ...------>Project Source Directory下显示的就是项目所在的目录. source insight 的标题栏上的地址显示的是当前文件所在项目文件夹中的位置.

Source Insight 中文乱码问题解决

(1)source insight 阅读VC++源码,注释为乱码解决方案 1.options->preferences->Syntax Formatting->Styles:2.在Style Name 选择 Comment,再对其Font Name 选择Pick,然后再选择“新宋体”. (2)source insight 阅读Linux源码,注释为乱码解决方案 1.用记事本打开源文件,中文可以显示,我另存为,在保存选项中,编码一栏发现是:UTF-8.我选ANSI一项,保存.再用Sourc

Source Insight 中使用 AStyle 代码格式工具

Source Insight 中使用 AStyle 代码格式工具 彭会锋 2015-05-19 23:26:32     Source Insight是较好的代码阅读和编辑工具,不过source insight没有集成代码格式化工具:GNU的astyle是一个较好的免费的代码格式化工具,经过它的格式化之后,代码排版会变得很漂亮:Astyle主要作为插件供其他程序调用,具体的使用方法如下: 1 astyle下载地址: http://sourceforge.net/projects/astyle/