Search the Community
Showing results for tags '_ArrayExtract'.
-
Hi, How can I get the largest number to be the first number in a calculation? I did the below code but the largest number doesn't store in the $ aExtract variable. I need always a positive number from the calculation (the largest number be the first in the calculation). Can you help me with that? Thank you. $N1 = 33 $N2 = 45 Local $numberSort [2] = [$N1 , $N2] _ArraySort($numberSort, 1) _ArrayDisplay($numberSort, "Sort Descending", Default, 1) Local $aExtract = _ArrayExtract($numberSort, 0, 0, 0) _ArrayDisplay($aExtract, "Row 1 cols 1") $minus = $N1
-
Hi Gents, Updating one of my older scripts here and cant get around this wall... I want to extract chunks from an larger array of indefinite size as smaller arrays in a loop and work with them individually and then move on to the the next "extracted array" until the original array is empty. The amount of elements in each extracted array will usually be different so I am using _ArraySearch to find my start and stop points and storing them as variables, which brings me to my problem. I want to "remove" (delete) the extracted array from the original array each time using _ArrayDelete but it doesn
- 2 replies
-
- _arrayextract
- _arraydelete
-
(and 1 more)
Tagged with:
-
If I wanna be able to "vertically rotate" (scroll up and down) 2D array rows, like... row 0 row 1 row 2 to row 2 row 0 row 1 etc. (both directions, where the one that disappears goes to the other end) ... 1) Do I have to make my own function, or is there a simple trick I am missing? 2) If I have to make my own function, would it be more or less like this one I made up? Problem here is that only "UP" is working... * I may be missing something very simple...? :-) * Why can't I seem to get the first row with _ArrayExtract($_aArray, 0, 0) somehow anyway...? #include <A
- 7 replies
-
- _ArrayExtract
- scroll 2D array
-
(and 1 more)
Tagged with:
-
Would one of the devs or the akin look at the post below regarding ArrayExtracts inability to extract row 0 and also column 0. I am unsure of how where to open a ticket. If I should do this instead can some one provide a link to the ticket page. Thank you, Shane '?do=embed' frameborder='0' data-embedContent>>
-
I am trying to get column 0 from A 2D array. In the below example, (adapted from Autoit Example Script for _ArrayExtract) The first ArrayExtract works as expected and returns only column 1 | Start Column = 1 End column = 1 The Second ArrayExtract returns data from all columns. | Start Column = 0 End column = 0 The Third ArrayExtract works as expected and returns only Row 1 . | Start Row = 1 End Row = 1 The Fourth ArrayExtract returns data from all Rows. | Start Row = 0 End Row = 0 If start = 1 end = 1 returns column 1 And/ row 1 respectively why does start = 0 end = 0 return all