Not a direct solution to your issue, but what can be done is, using
Reactive.jl and Interact.jl, display a string signal in one cell (e.g, label
= Input("qwerty")) and then in another cell push to that signal (e.g.,
push!(label,
"new text")) which will readily update the text being displayed in the
first cell.
On Monday, September 14, 2015 at 3:46:36 PM UTC+1, Andrew Gibb wrote:
>
> Hi,
>
> I have some loops I'd like to observe/debug by seeing the parameters
> change. In the REPL I can do
> print(" $p1 $p2 \r")
> flush(STDOUT)
> and have my parameters updating on a line.
>
> This doesn't seem to work in IJulia. When I try it, there is no output. I
> guess this is because this isn't STDOUT, or something like that.
>
> Does anyone know of a nice way to do this?
>
> Thanks
>
> Andy
>