Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
110 views

This is a continuation from Unpredictable behavior when minimizing application child windows in Windows 11. The following program in Dyalog APL creates a window which opens a child window when a ...
August Karlstrom's user avatar
Advice
2 votes
4 replies
101 views

How can I do OCR with APL program listings? I have ancient printouts of code printed with an IBM 2741 and/or Diablo typewheel, pretty close to the APL385 font. I tried a number of the free online ...
Tooter Turtle's user avatar
2 votes
1 answer
139 views

I have a covariance matrix(4500*4500). WSSIZE in my installation approx 1.5 Gb. But for simplification, let's say it: covm←0.5×((5 5⍴⍳25)+⍉(5 5⍴⍳25)) Also, I vector rfikv←101 102 103 104 105 (in my ...
Yuliia Serhiienko's user avatar
2 votes
1 answer
93 views

a 0 a×←5 a 0 (a×←5) 5 a 0 (⎕←a×←5) 5 5 Why does having braces(or a ⎕←) over a modified assignment change the result but the variable is set correctly. I am not able to ...
sloorush's user avatar
  • 117
-1 votes
1 answer
172 views

I'm trying to edit a spreadsheet by diving into its underlying XML files after I read the XLSX file as a ZipArchive. It's for a work project where we're trying to get rid of Excel running in the ...
T.P.'s user avatar
  • 175
0 votes
1 answer
108 views

Is there a way to specify a minimum size for e.g. a window created with 'F'⎕WC'Form' so that I can resize the window but not make it smaller than a certain size?
August Karlstrom's user avatar
1 vote
1 answer
78 views

I want to write a file like eslint.js file which has a standard like tab=4spaces etc. The problem I am essentially having is that if someone uses the IDE or their own way of formatting, a lot of ...
sloorush's user avatar
  • 117
1 vote
1 answer
102 views

With ⎕DIV←1, dividing by 0 does not give an error but gives a 0 every time. When dividing by 0, ⌹ (quad divide) seems to always throw a domain error even with ⎕DIV←1. Is there a reason why the value ...
sloorush's user avatar
  • 117
3 votes
1 answer
102 views

Sometimes I install a new version of Dyalog and I have to re-set my ]Box and ]Rows settings. ]box on -fns=on ]rows on -fns=on -fold=3 I know I can set these and then save the session file, but I can'...
RikedyP's user avatar
  • 743
1 vote
1 answer
96 views

I'm trying to find the locations of substrings within a string. Here, I can find the location of the first length-3 string ('DEF') within the larger string: ⍸(3,/'DEFGHI') ⍷ 3,/'ABCDEFGHIJKLMNOP'...
userABC123's user avatar
  • 1,522
5 votes
1 answer
221 views

Of course, many functions f are not associative in the sense that a f(b f c) (which is often just written a f b f c in APL) is not always the same as (a f b)f c. This is also the case when f is ...
Jeppe Stig Nielsen's user avatar
1 vote
1 answer
132 views

Selective assignment (with replicate on the left) works as expected: d←'bob' (1 0 0/d)←'B' d Bob But the same thing (though expressed with a commute) does not: d←'bob' (d/⍨1 0 0)←'B' ...
justin2004's user avatar
2 votes
1 answer
145 views

Is it possible to use a new dll in Dyalog APL? I can use the existing dll's just by setting ⎕USING, but this does not work if I download a new dll. Simply copying the dll in the directory and calling ⎕...
T.P.'s user avatar
  • 175
2 votes
1 answer
83 views

A simple window created with 'F'⎕WC'Form' can be resized by the user but there is no resize grip in the lower right corner. If we add a status bar with 'F.SB'⎕WC'StatusBar', however, the grip is shown....
August Karlstrom's user avatar
2 votes
1 answer
94 views

Let's say I have the following namespace in the APL file F.apln: :Namespace F foo←{...} :Endnamespace I want to import this namespace in another namespace and use it. For example: IMPORT F :...
Zet Khrush's user avatar

15 30 50 per page
1
2 3 4 5
27