Matlab 工作区窗口不显示变量
我正在使用最新的 Matlab 7.13 R2011b 版本。 我在网上找不到解决方案。我的工作区没有显示变量。 请提出如何修复它的解决方案。
我读过类似的主题,那家伙已将 mathlab 升级到 R2011a,但我正在使用最新的,
我从命令行分配变量 示例:
>> a = 2
a =
2
>> b = 3
b =
3
>> c = a+b
c =
5
工作区窗口中没有变量。
当我尝试从工作区窗口分配变量时,我单击“新建”,它显示:
Undefined function 'workspacefunc' for input arguments of type 'cell'.
我正在使用 Windows 7 / x64
我知道 who
和 whos
命令,但应该它不会将我的变量生成到工作区吗?
感谢大家,通过安装 java JDK SE 7u2 解决了
I am using lastest Matlab 7.13 R2011b release.
I could not find solution on the web. My workspace is not showing variables.
Please suggest a solution how to fix it.
And I've read the similar topic about it, the guy has upgraded mathlab to R2011a, but I'm using the latest one
I am assigning variables from command line
example:
>> a = 2
a =
2
>> b = 3
b =
3
>> c = a+b
c =
5
And there are no variables in Workspace windows.
When I Try to assign variables from workspace window, I click 'New', it says:
Undefined function 'workspacefunc' for input arguments of type 'cell'.
I am using Windows 7 / x64
I know about who
and whos
command, but shouldn't it produce my variables to workspace?
Thanks to all, solved by installing java JDK SE 7u2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有同样的问题。使用此命令
restoredefaultpath;matlabrc
解决了我的问题。更新:
我的解决方案是临时解决方案,但您可以在这里找到此问题的一致解决方案:
http://www.mathworks.com/matlabcentral/answers/102432-why-do-i-receive-a-warning-regarding-missing-pathdef-m-when-starting-matlab-7- 14-r2012a
I had same problem. Using this command
restoredefaultpath;matlabrc
solved my problem.UPDATE:
my solution is temporal solution, but you can find consistent solution for this problem here:
http://www.mathworks.com/matlabcentral/answers/102432-why-do-i-receive-a-warning-regarding-missing-pathdef-m-when-starting-matlab-7-14-r2012a