1

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.

Plissken
  • 131
  • 4

1 Answers1

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.

Community
  • 1
  • 1
DNF
  • 11,584
  • 1
  • 26
  • 40
  • 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
  • 1
    I'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