Mathematica Navigator: Mathematics, Statistics and Graphics
https://books.google.no › booksLists, 15, 34,444 array depth of, ArrayDepth, 444 as collections of elements, ... With, 522 extrema, FindMinimum, 759 regression, localRegress, 1038 rules, ...
Position—Wolfram Language Documentation
https://reference.wolfram.com/language/ref/Position.htmlPosition[expr, pattern] gives a list of the positions at which objects matching pattern appear in expr. Position[expr, pattern, levelspec] finds only objects that appear on levels specified by levelspec. Position[expr, pattern, levelspec, n] gives the positions of the first n objects found. Position[pattern] represents an operator form of Position that can be applied to an expression.
How can I find the local minimum values and of a list in ...
https://stackoverflow.com/questions/3001592902.05.2015 · An old trick used to find the minimum is to find the max of -1 times the data. data = {1, 3, 1, 3};FindPeaks [data] which gives { {2, 3}, {4, 3}} To get the minimum use negate the data FindPeaks [-data] which gives { {1, -1}, {3, -1}} The x position is correct, but the y is negated. So multiply -1 times those y values.