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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 3211 - 3241 of 5356   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3211
Dyalog can interact with almost any software out there. Google is your friend; I searched for windows free midi play api and got over 900,000 hits -- add...
J. Merrill
jamesvmerrill
Offline Send Email
Jul 1, 2007
9:37 pm
3212
#.Coord Pixel #.Size 0 0 What am I overlooking? (Is this what those spam messages have been urging me to take action on?) SJT...
Stephen Taylor
sjt52
Offline Send Email
Jul 2, 2007
7:57 am
3213
... What's the prior session history? Starting Dyalog and after a few typing mistakes I get... #.Coord Prop #.Size 100 100 #.Coord?'Pixel' #.Coord Pixel #.Size...
Dick Bowman
bertybullfrog
Offline Send Email
Jul 2, 2007
8:09 am
3214
Thank you for your quick response and I am sorry that I have taken so long to use your information. I do not seem to be succeeding. I went to the web page you...
George MacLeod
georgemacleo...
Offline Send Email
Jul 2, 2007
3:34 pm
3215
Hi All, I have created a file under apl that is 481 components each with 8 values in each component. I want to sort the file by sorting the first two values....
lalexman
Offline Send Email
Jul 4, 2007
4:00 pm
3216
Hi, assuming each component starts with 2 numbers and that you want to sort ascending on the first number first, you can grab all those numbers and use gradeup...
Dan Baronet
dbaronet
Offline Send Email
Jul 4, 2007
9:35 pm
3217
Hi I tried what you suggested using version 11.0 Dyalog anmd I get domain errors. SInce the resulting array is a nested array I cannot get Grade up to work on...
lalexman
Offline Send Email
Jul 5, 2007
1:49 am
3218
... numbers. My File contains letters. I want to do an Alpha sort on the nested array. ... cannot ... to ... gradeup ... of ... with ... the...
lalexman
Offline Send Email
Jul 5, 2007
2:23 am
3219
Actually, they do not need to be numbers as Dyalog will work (monadically) on characters as well. What you need to make sure is that they either are ALL...
Dan Baronet
dbaronet
Offline Send Email
Jul 5, 2007
3:14 am
3220
Hello, How do I efficiently implement bitwise operations (AND and XOR) and bitwise shifting? Examples: 57403994 & 720641164 = 39847944 11495 >> 5 = 359 ...
Christian Davén
chrstndoe
Offline Send Email
Jul 5, 2007
8:54 am
3221
... As you know, shifting is equivalent to multiplication and division. ˜11495 ÷ 2* 5 359 Alas when you try the same with your second example 1892242247 ×2*...
Stefano Lanzavecchia
lstefano2001
Offline Send Email
Jul 5, 2007
9:09 am
3222
Christian, Have you tried using []DR to cast the data to Boolean? We have an optimization project which we are considering for 11.1, to special-case base-2...
mkrom@...
morten_kromberg
Offline Send Email
Jul 5, 2007
9:51 am
3223
Warning: Avoid monadic upgrade on characters if you care about the order of the end result (it is fine for idioms where the order is not important). When we...
mkrom@...
morten_kromberg
Offline Send Email
Jul 5, 2007
9:54 am
3224
... I guess the wish is to have something like http://www.jsoftware.com/help/dictionary/dbdotn.htm (possibly with a less obscure operand) which optimizes...
Stefano Lanzavecchia
lstefano2001
Offline Send Email
Jul 5, 2007
10:21 am
3225
Hi Dan, I tried that on a two column character array and get a domain error. It seems that Grade up does not work on Nested Arrays. I did use the mix function....
lalexman
Offline Send Email
Jul 5, 2007
2:13 pm
3226
Hi everybody, can anyboty give me a hint: I have large amounts of files of interest (mostly *.dws - Dyalog workspaces) accummulated over years. Using the...
Theo Formanek
formanek.theo
Offline Send Email
Jul 5, 2007
3:45 pm
3227
... workspaces) accummulated over years. Using the normal Windows (XP) search program, specifying search criteria, I get a nice list of results - all in a ...
Stefano Lanzavecchia
lstefano2001
Offline Send Email
Jul 5, 2007
4:13 pm
3228
Thanks, Morten! I hadn't thought of that. I got my little algorithm working now! It took a little while to understand that the endianness was "the other way...
Christian Davén
chrstndoe
Offline Send Email
Jul 5, 2007
4:26 pm
3229
Hi Theo, what you're asking for does not specifically exist although it can be put together fairly easily using .Net. In V11: []USING<-'System.IO' dir<-[]NEW...
Dan Baronet
dbaronet
Offline Send Email
Jul 5, 2007
4:33 pm
3230
Ok, maybe it didn't work as well as I thought... I'm having problems interpreting the 64-bit floating-point representation. I'm only converting integers up to,...
Christian Davén
chrstndoe
Offline Send Email
Jul 6, 2007
3:34 pm
3232
Hi Stefano, many thanks for the hints. I can do that this way, it is a one-shot job and would do. Originally, I thought there would be a way (known to those...
Theo Formanek
formanek.theo
Offline Send Email
Jul 9, 2007
6:03 am
3233
Hi Dan, many thanks for the hints. I cannot do that this way, I concede, that I still have not put together ma .NET configuration - plan to do so "soon". ...
Theo Formanek
formanek.theo
Offline Send Email
Jul 9, 2007
6:09 am
3234
Hi, I have a gui Form that includes an Edit object. I would like the gui to show up with the ocus already in the edit window so that I can just start typing...
Koko
philacap
Offline Send Email
Jul 9, 2007
1:44 pm
3235
You can "enqueue" the GotFocus event on the edit object just before you DQ the form, eg: []NQ form.editobject 'GotFocus' cheers...r...
Richard Procter
rjprocter1
Offline Send Email
Jul 9, 2007
1:54 pm
3236
Richard: Thanks. ... From: Richard Procter To: dyalogusers@yahoogroups.com Cc: koko@... Sent: Monday, July 09, 2007 8:52 AM Subject: Re:...
Koko
philacap
Offline Send Email
Jul 9, 2007
2:00 pm
3237
... One option is to use ?NQ something like this... ?NQ'#.FILESPLIT.frmSplit.tc.tSplit' 'Select' substituting your own control name and event (probably...
Dick Bowman
bertybullfrog
Offline Send Email
Jul 9, 2007
2:01 pm
3238
I've just realised I should have posted this to DyalogUsers as well as DFns... Mike dfns@... wrote: [on 3 July]...
Mike Day
tonyangelsdad
Offline Send Email
Jul 9, 2007
2:39 pm
3239
Hi all, I'm toying with the idea of a fixed point decimal array class. My implementation is fairly simplistic: use a 32 bit int with an implied scale. While...
Paul S. Mansour
psmansour2000
Offline Send Email
Jul 18, 2007
2:54 pm
3240
With the lastest patch on 11.0.2 I cannot fread a file component containing a namespace component written with 10.1.3. This is what I did ... 10.1.3 fcreate...
Paul
pablo2some
Offline Send Email
Jul 18, 2007
3:08 pm
3241
... If you're willing to accept 64 bit int when/if it comes it's not space considerations making you lean towards 32 bit. You'll have to apply the scaling at...
Phil Last
aphillast
Offline Send Email
Jul 19, 2007
10:44 am
Messages 3211 - 3241 of 5356   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