Hi, I have the following use case. In a mobile robot simulator, I use julia to implement the robot controller. In particular, this means that I have a general controller implemented in C++ that takes a julia source code as one of its parameters. The library takes care of all the callbacks and connects them with the simulator. This all works fine (at least on Mac OS X, there are problem on linux).
The problem I now have is that I would like to visualise the matrices (e.g. neural network weight matrices) and some additional information (e.g. eigenvalues) during runtime, which means that I need to open some window from within my julia code and plot the data. In my first attempt, I tried to use PyPlot which ended in a crash. Does anyone have any experience with a similar case? What would be the best practice and the best julia-plotting package to use? Thanks, Keyan
