Matlab:从命令窗口重命名工作区元素?
Matlab 的 GUI 允许我通过右键单击元素并选择“重命名”选项来重命名工作区中的任何元素。是否也可以从命令窗口执行此操作?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Matlab 的 GUI 允许我通过右键单击元素并选择“重命名”选项来重命名工作区中的任何元素。是否也可以从命令窗口执行此操作?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这些是您可以轻松亲自测试的事情,并且您应该这样做。这是学习、发现的最佳方式。
无论如何,答案是否定的,您不能从命令窗口以这种方式更改变量名称。命令窗口主要仅用于键盘输入。
编辑:问题显然是通过命令窗口中的命令进行更改,而不是通过鼠标完成。 (为什么不预先告诉我们这一点?)
没有明确的命令可以执行此类重命名。但是,没有什么可以阻止您自己编写它。例如...
These are things you can easily test for yourself, and you should do so. That is the best way to learn, to discover.
Regardless, the answer is no, you cannot change a variable name in that way from the command window. The command window is mainly for keyboard input only.
Edit: The question was apparently about doing that change by a command in the command window, not to be done via a mouse. (Why not tell us that up front?)
There is no explicit command that does such a rename. However, nothing stops you from writing it yourself. For example...
您可以在命令窗口中重命名变量,如下所示:
编辑
如果要将变量重命名为存储在字符串中的另一个变量,可以使用分配
You can rename variables in the command window as follows:
EDIT
If you want to rename your variable to another variable stored in a string, you can use ASSIGNIN