Re: [julia-users] Project organization and variable scope question

2016-11-21 Thread Nicholas Mueschke
Mauro, Thanks. I've read the scope and performance sections you've mentioned. Part of the problem comes from the often competing approaches of scientific/numerical computing and well-versed/structured programming practices. I have my hand in both pots at times. While global variables are

[julia-users] [ANN] GLVisualize

2016-11-21 Thread Simon Danisch
I finally tagged a new version of GLVisualize with a lot of new goodies and overall improved stability. For more information please see my blog post: GLVisualize - a modern graphics platform for julia [Lets

Re: [julia-users] How to enter a file using gallium?

2016-11-21 Thread Isaiah Norton
If breakpoints aren't working, I would suggest to your push object(s) of interest into a global Vector{Any} and then debug with `@enter`. On Mon, Nov 21, 2016 at 11:00 AM, wrote: > Well, if A is a complicated object/structure, it'll be almost impossible > to first make up

Re: [julia-users] How to enter a file using gallium?

2016-11-21 Thread Michele Zaffalon
How would you do that in MATLAB? On Mon, Nov 21, 2016 at 5:00 PM, wrote: > Well, if A is a complicated object/structure, it'll be almost impossible to > first make up an A and call @enter function_to_debug(A). > > > > On Monday, November 21, 2016 at 2:32:16 PM UTC, Isaiah

[julia-users] Re: Project organization and variable scope question

2016-11-21 Thread Nicholas Mueschke
Ralph... thanks for the clarifications and suggestions. I'll test them out. Nick On Saturday, November 19, 2016 at 11:47:23 AM UTC-6, Ralph Smith wrote: > > Unlike Matlab, Julia doesn't give special treatment to script files. > By "script" we usually mean a file containing a series of

Re: [julia-users] Passing N-D Julia arrays to C functions

2016-11-21 Thread Alexander Lyapin
Thank you, for this info. I will definitely need this! пятница, 4 ноября 2016 г., 22:26:50 UTC+3 пользователь Steven G. Johnson написал: > > Note that using **double is not actually that great a way to do > multidimensional arrays in C -- way harder to do the memory management, and > also

[julia-users] Passing Dictionary from Julia to C function using ccall

2016-11-21 Thread Alexander Lyapin
Is there way to pass Dictionary from Julia to C function using ccall??? I have to divide all dictionaries for subarrays and then send them to C... this is really long and leads to huge syntax. Is there way to pass whole dictionary at once? Thank you

Re: [julia-users] How to enter a file using gallium?

2016-11-21 Thread chobbes158
Bump up for the following question: Suppose I have the following code where the variable A is defined multiple times and after each definition it is used by the same function function_to_debug. How can I step in function_to_debug with the first definition/instantiation of A? A = ...

[julia-users] Re: [Announcement] Moving to Discourse

2016-11-21 Thread Ferran Mazzanti
One thing that is not particular from discourse but that also affects it... It turns out that I read most of the posts from my ipad, and my eyes are not the ones that used to be. So I like to zoom in, as I was doing with google groups. Apparently, this can't be done in discourse (as in many

Re: [julia-users] Re: [Announcement] Moving to Discourse

2016-11-21 Thread Tamas Papp
I am using a laptop with a HiDPI display, and the forum works fine -- in fact, I love the clean design. In firefox, Ctrl+ magnifies correctly, same in Chromium. Are you using Safari? Perhaps try a different browser. On Mon, Nov 21 2016, Ferran Mazzanti wrote: > One thing that is not particular

Re: [julia-users] Re: [Announcement] Moving to Discourse

2016-11-21 Thread Valentin Churavy
I forgot to post the link to the iOS 10 problem https://meta.discourse.org/t/discourse-1-7-0-beta4-problems-due-to-removal-of-fixed-zoom-safari-iphone/50145 On Mon, 21 Nov 2016 at 22:39 Valentin Churavy wrote: > You can still answer to current thread, but you should be

Re: [julia-users] Re: [Announcement] Moving to Discourse

2016-11-21 Thread Valentin Churavy
You can still answer to current thread, but you should be unable to create new threads. Re: Discourse mobile view. I just tested it on my Android phone and I can also not zoom in. Switching into Desktop mode works. On Android chrome has in the accessibility settings the option to "Force enable

Re: [julia-users] Re: [Announcement] Moving to Discourse

2016-11-21 Thread Bart Janssens
I think this is because it loads the mobile version of the site. Often, mobile sites can't be zoomed in on. There should be an option in the browser to request the desktop version. Alternatively, I think you can also set the font size globally from the system settings. Also, I thought the list

Re: [julia-users] How to enter a file using gallium?

2016-11-21 Thread Isaiah Norton
> > Any other means without resorting to breakpoints?? Use `@enter function_to_debug( ... )` with the value of A that you are interested in. On Mon, Nov 21, 2016 at 6:30 AM, wrote: > Bump up for the following question: > > Suppose I have the following code where the

Re: [julia-users] How to enter a file using gallium?

2016-11-21 Thread chobbes158
Well, if A is a complicated object/structure, it'll be almost impossible to first make up an A and call @enter function_to_debug(A). On Monday, November 21, 2016 at 2:32:16 PM UTC, Isaiah wrote: > > Any other means without resorting to breakpoints?? > > > Use `@enter function_to_debug( ... )`