1 - 10 of 30 for MapAtSearch Results

MapAt[f, expr, n] applies f to the element at position n in expr. If n is negative, the position is counted from the end. MapAt[f, expr, {i, j, ...}] applies f to the part of ...
If you have a list of elements, it is often important to be able to apply a function separately to each of the elements. You can do this in Mathematica using Map. This ...
Mathematica's unified symbolic architecture immediately allows it to perform structural transformations not only on objects like lists, but also on general symbolic ...
FlattenAt[list, n] flattens out a sublist that appears as the n\[Null] th element of list. If n is negative, the position is counted from the end. FlattenAt[expr, {i, j, ...
Many computations are conveniently specified in terms of applying functions in parallel to many elements in a list. Mathematica provides a suite of elegant functional ...
Unevaluated[expr] represents the unevaluated form of expr when it appears as the argument to a function.
Mathematica's unified symbolic architecture allows immediate generalization of part-oriented list operations to arbitrary expressions—supporting operations both on individual ...
Mathematica provides a carefully chosen set of functions for accessing elements of lists either using indices or positions, or using patterns or criteria for their values.
Delete[expr, n] deletes the element at position n in expr. If n is negative, the position is counted from the end. Delete[expr, {i, j, ...}] deletes the part at position {i, ...
Extract[expr, list] extracts the part of expr at the position specified by list. Extract[expr, {list_1, list_2, ...}] extracts a list of parts of expr. Extract[expr, list, h] ...

...