Search the web
Sign In
New User? Sign Up
dyalogusers · Dyalog APL
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3130 - 3160 of 5365   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3130
... applicable to reduction. It's easy (i think) to write a dyadic function that takes the mean of two numbers. If instead of just passing the number, we also...
Paul S. Mansour
psmansour2000
Offline Send Email
Jun 3, 2007
12:25 am
3131
The APL Consultants Group is a collective venture of professionals working as consultants using the APL programming language and other related array-based...
Dick Bowman
bertybullfrog
Offline Send Email
Jun 4, 2007
3:00 pm
3132
I need a better way to understand something like "enclose with axes" - it seems like the axes are always referring to the wrong one; for instance, if I have a...
johnlyn763
Offline Send Email
Jun 8, 2007
11:21 pm
3133
Yes, this DOES seem backwards. I had the opportunity to ask Jim Brown why it's defined that way. He said the axis specified is the one that DISAPPEARS. It...
Maria Wells
mariawellsco...
Offline Send Email
Jun 9, 2007
12:22 am
3134
Maybe think of it this way: in the same way that reduction removes a dimension, so does enclose with axis. mat2 <- 2 3 reshape iota 6 rho +/[1] mat2 //...
J. Merrill
jamesvmerrill
Offline Send Email
Jun 9, 2007
12:56 am
3135
Hello; If you circle the separate elements like you would on a word search puzzle, you may be able to see what happens. {enclose}[1]M has the loops going along...
R.A. MacDonald
rando0227
Offline Send Email
Jun 9, 2007
2:42 am
3136
Hello; If reduction along axes is plain to you, the following identity might be of help: X{<-}2 3{rho}{iotal}6 X 1 2 3 4 5 6 {enclose}[1]X 1 4 2 5 3 6 +/[1]X...
R.A. MacDonald
rando0227
Offline Send Email
Jun 9, 2007
2:47 am
3137
... That was one of Ken Iverson's pet peeves about APL2 - that the axis operator seemed to have different rules depending on which function it was applied to. ...
Dick Bowman
bertybullfrog
Offline Send Email
Jun 9, 2007
6:06 am
3138
When Dyalog introduced dynamic function years ago my first thaught was: nice to have, but there are more important things we need. That changed over the years....
kai1811
Offline Send Email
Jun 9, 2007
3:49 pm
3139
I'm a bit late catching up on old messages. I could not resist expressing my admiration for the phrase below. At 06:17 AM 5/23/2007, John Scholes wrote (in...
J. Merrill
jamesvmerrill
Offline Send Email
Jun 9, 2007
5:58 pm
3140
I intend Vector 23.4 to be a special Style issue. Perhaps you'd consider writing an article from this thread. Stephen editor@... ... anymore!...
Stephen Taylor
sjt52
Offline Send Email
Jun 9, 2007
6:50 pm
3141
An interesting set of ideas; danke schon for raising the issue. I find one of the most important ideas - test-driven development - actually has little to do...
Peter Merritt
prmerritt_mbx
Offline Send Email
Jun 9, 2007
11:33 pm
3143
How long would you like it to be? At 01:49 PM 6/9/2007, Stephen Taylor wrote ... J. Merrill / Analytical Software Corp...
J. Merrill
jamesvmerrill
Offline Send Email
Jun 10, 2007
2:17 am
3144
I have extensive thoughts on this subject (and on pretty much everything that has anything to do with software development). One of the important things that...
J. Merrill
jamesvmerrill
Offline Send Email
Jun 11, 2007
3:14 am
3145
... Because APL is painful, and Python/Ruby is beautiful. ;-) There is no agility in reinventing the wheel. If I want to write a program, I want to do it with...
Christian Davén
chrstndoe
Offline Send Email
Jun 11, 2007
7:13 am
3146
... "foresighted enough"?) to expend significant effort on a framework for APL developers to use. [...] ... http://www.vector.org.uk/archive/v191/ed191.htm We...
Stefano Lanzavecchia
lstefano2001
Offline Send Email
Jun 11, 2007
9:11 am
3147
... A painful jab even with the wink ... program, I want to do ... I'll cut the list, because I agree with everything on it. ... Actually what's missing is...
Chris Hogan
hmw4xtra
Offline Send Email
Jun 11, 2007
12:04 pm
3148
The truth is that the people who push the other languages realize that the things you mention (and even more extensive things like a framework for building GUI...
J. Merrill
jamesvmerrill
Offline Send Email
Jun 11, 2007
12:15 pm
3149
... 11....
Dick Bowman
bertybullfrog
Offline Send Email
Jun 11, 2007
12:24 pm
3150
Absolutely; the only thing I'd disagree with Chris (and Kai) about is that any 10 APLers do NOT have 10 sets of slightly differing utilities. I suspect the...
Peter Merritt
prmerritt_mbx
Offline Send Email
Jun 11, 2007
12:37 pm
3151
... The problem is IMNSHO that there is no way to handle dependencies in APL code. If I'm writing an URL-handling library and want to add some handy string...
Joakim Hårsman
joakim.harsman
Offline Send Email
Jun 11, 2007
2:17 pm
3152
Perhaps that's the very first thing that The Language Vendor needs to supply -- a standard way of doing code deployment that includes hooks into optional and...
J. Merrill
jamesvmerrill
Offline Send Email
Jun 11, 2007
10:42 pm
3153
Thanks to Kai for starting this discussion, and to everyone who has contributed - I think it is really valuable! I apologise in advance if I skimmed the...
Morten Kromberg
morten_kromberg
Offline Send Email
Jun 12, 2007
10:57 pm
3154
A very interesting contribution from Morten. But while we're collecting all these libraries of RUS (Really Useful Stuff), what work is being done to #organise#...
Peter Merritt
prmerritt_mbx
Offline Send Email
Jun 13, 2007
9:20 am
3155
... I think you should quote Morten properly. What he wrote is: "I can write an uppercase utility *good enough for use in most of my applications* in less than...
Stefano Lanzavecchia
lstefano2001
Offline Send Email
Jun 13, 2007
11:11 am
3156
... I honestly doubt that it takes you less time to write an function to uppercase strings than writing string.upper() (example in Python since I don't really...
Joakim Hårsman
joakim.harsman
Offline Send Email
Jun 13, 2007
12:23 pm
3157
... I agree and want to add that Windows (.Net or not) is only ONE of the Dyalog plateforms. We have a commercial product written in DyalogAPL wich has to run...
Stéphane COEZ
scoez
Offline Send Email
Jun 13, 2007
12:36 pm
3158
Quite right; my apologies. I can only say in my defence that the client firewall (or minefield) slows actions down so much that I preferred to try and get the...
Peter Merritt
prmerritt_mbx
Offline Send Email
Jun 13, 2007
1:15 pm
3159
... Examples: http://blogs.msdn.com/michkap/archive/2005/09/25/473632.aspx http://blogs.msdn.com/michkap/archive/2007/05/05/2430935.aspx ...
Stefano Lanzavecchia
lstefano2001
Offline Send Email
Jun 13, 2007
2:30 pm
3160
The one day when I am very bored and I can write a Vista Sidebar Gadget, or a Google/Yahoo Gadget, to do what I am about to show you, I'll be happy. In the...
Stefano Lanzavecchia
lstefano2001
Offline Send Email
Jun 13, 2007
3:49 pm
Messages 3130 - 3160 of 5365   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help