Matlab 代码格式类似于 AStyle?
有没有类似于 AStyle 的工具来格式化 m 文件中的 matlab 代码?
Is there any tool similar to AStyle to format matlab code in m-files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有类似于 AStyle 的工具来格式化 m 文件中的 matlab 代码?
Is there any tool similar to AStyle to format matlab code in m-files?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在最新版本的 MATLAB 中,您可以使用 MATLAB 编辑器 API。
举个例子,假设您想要修复特定目录中包含的所有 M 文件的缩进:
In recent versions of MATLAB, you can use the "Smart Indent" tool programmatically using the MATLAB Editor API.
As an example, say you want to fix indentation of all M-files contained in a specific directory:
请记住,您可以在 Matlab 编辑器中选择文本,然后按 Ctrl+I 来自动缩进。 (另外,使用
Ctrl+A
选择所有文本。)Remember that you can select text in Matlab's editor and press
Ctrl+I
to auto-indent it. (Also , useCtrl+A
to select all the text.)