Re: [Jprogramming] Help for simple edit box

2007-11-11 Thread David Porter
bill lam wrote: Could you post some code for discussion? I have taken a few menu options out of TRANSFORMIMAGE, and added others. Everything has worked until now. The one in question is: menu aramisinput "Aramis Facet input" "" "" ""; I have also tried a differently named function , aroi

RE: [Jprogramming] Help for simple edit box

2007-11-11 Thread Henry Rich
transformimage_aramisinput should be transformimage_aramisinput_button A good thing for your debugging would be the line transformimage_default =: wdqshow (executed by itself as a verb when you load your script). That will get control if there's an event you aren't handling, and you can see wh

Re: [Jprogramming] How to behead included?

2007-11-11 Thread Roger Hui
http://www.jsoftware.com/jwiki/Essays/Fibonacci_Index - Original Message - From: Raul Miller <[EMAIL PROTECTED]> Date: Friday, November 9, 2007 14:13 Subject: Re: [Jprogramming] How to behead included? To: Programming forum > On Nov 9, 2007 3:28 PM, Dan Bron <[EMAIL PROTECTED]> wrote:

Re: [Jprogramming] Help for simple edit box

2007-11-11 Thread Oleg Kobchenko
You cannot use ids (menu, parent, controls) with anything other than a-z0-9: event handlers use '_' to make up their names. --- David Porter <[EMAIL PROTECTED]> wrote: > > bill lam wrote: > > Could you post some code for discussion? > > > I have taken a few menu options out of TRANSFORMIMAGE, a

Re: [Jprogramming] updating of a name from tacit expression

2007-11-11 Thread danil osipchuk
Raul For this, I would probably use dyadic ;: to break the log file down into > meaningful words, (or possibly multiple times, in a stepwise refinement > sort of way), until I could get something which I could handle with a > simple expression. > > Honestly I don't see how this addresses the prob

Re: [Jprogramming] updating of a name from tacit expression

2007-11-11 Thread Raul Miller
On Nov 11, 2007 2:10 PM, danil osipchuk <[EMAIL PROTECTED]> wrote: > Honestly I don't see how this addresses the problem of context changing > through the file. Imagine that you are writing a xml parser - that would be > another example. Ok, let's say I was writing an xml parser using dyadic ;:

Re: [Jprogramming] updating of a name from tacit expression

2007-11-11 Thread Oleg Kobchenko
--- danil osipchuk <[EMAIL PROTECTED]> wrote: > Not all of the tasks can be expressed without the use of temp variables (at > least efficiently or naturally). To put an example, write a tacit version of > verb which checks if parenthesises in a string are balanced. My best version > (*) in the ca

Re: [Jprogramming] Help for simple edit box

2007-11-11 Thread David Porter
Henry Rich wrote: transformimage_aramisinput should be transformimage_aramisinput_button A good thing for your debugging would be the line transformimage_default =: wdqshow (executed by itself as a verb when you load your script). That will get control if there's an event you aren't handlin

Re: [Jprogramming] speed of matrix*vector operation.

2007-11-11 Thread Oleg Kobchenko
Older version of Matlab, using Symbolic Toolbox (Mapple) » h = sym(hilb(5)) h = [ 1, 1/2, 1/3, 1/4, 1/5] [ 1/2, 1/3, 1/4, 1/5, 1/6] [ 1/3, 1/4, 1/5, 1/6, 1/7] [ 1/4, 1/5, 1/6, 1/7, 1/8] [ 1/5, 1/6, 1/7, 1/8, 1/9] » h * inv(h) ans = [ 1, 0, 0, 0, 0] [ 0, 1, 0, 0, 0] [ 0, 0, 1, 0, 0] [ 0