If it does how can I toggle it? I have tried to look around but cannot find anything on it. I find Matlab's Workspace very convenient as I can follow which matrices I have createdand if in fact they look as I wanted them to.
Asked
Active
Viewed 1,162 times
1 Answers
2
(I would have added this as a comment, but don't have the reputation)
This is answered here: Get a list of current variables in Julia Lang
You can use the whos
function, same as in Matlab.
Julia also has a function called workspace
, which does something completely different, a bit like Matlab's clear all
, where you stash away the entire current workspace, but in a way so that you can retrieve it at a later point.
-
After thinking about it some more, are you talking about the workspace _browser_ that shows the variables in a graphical window in the IDE? In that case, Juno will probably have them in the not-too-distant future, but last I checked it was not ready yet. – DNF May 25 '16 at 16:39
-
Thanks for the answer. I know of whos but meant a workspace browser. That way I can follow all matrices as they are created etc. Do you know anything about how long it will be until they implement it? – Plissken May 25 '16 at 16:46
-
1I'm afraid I don't really know. But you can follow the discussion here: http://discuss.junolab.org/t/new-features-you-want-in-juno/494 Workspace browser seems to be quite high on the list of wanted features. – DNF May 25 '16 at 16:51