06-13-2014 10:52 AM - edited 06-13-2014 10:52 AM
valentina.alina wrote:
What shall i modify if i need to find the maximum. If the dimensions are: 74 pages, 24 rows and 10 collums i need a resulting 24 rows and 10 collums 2d array containing the maximum of the corresponding elements in the pages. i tried the Array max & min function but it does not meet the behaviour i need...it gives me the global maximum, wheres i need a set of local max.
Unfortunately, the autoindexing won't work for that. You will need to make a couple of FOR loops and index yourself and then find the max.
06-13-2014 11:11 AM
Thank you very much. You all helped me a lot!!