mydreamadsl
mydreamadsl

Reputation: 568

Matlab workspace window is not showing variables

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

Upvotes: 1

Views: 7980

Answers (1)

Mehrdad Salimi
Mehrdad Salimi

Reputation: 1426

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

Upvotes: 2

Related Questions