Enable JavaScript to interact with content and submit forms on Wolfram websites. Learn how

Legacy Documentation

Mathematica 8 (2010)

This is documentation for Mathematica 8, which was
based on an earlier version of Wolfram Language.
View current documentation (Version 14.3)

Applying Functions to Lists and Other Expressions

In an expression like you are giving a list as the argument to a function. Often you need instead to apply a function directly to the elements of a list, rather than to the list as a whole. You can do this in Mathematica using Apply .
This makes each element of the list an argument of the function .
Out[1]=
This gives Times which yields the product of the elements in the list.
Out[2]=
Here is a definition of a function that works like the built-in function GeometricMean , written using Apply .
Apply[f,{a,b,...}] apply f to a list, giving
Apply[f,expr]orf@@expr apply f to the top level of an expression
Apply[f,expr,{1}]orf@@@expr apply f at the first level in an expression
Apply[f,expr,lev] apply f at the specified levels in an expression

Applying functions to lists and other expressions.

What Apply does in general is to replace the head of an expression with the function you specify. Here it replaces Plus by List .
Out[4]=
Here is a matrix.
Out[5]=
Using Apply without an explicit level specification replaces the top-level list with .
Out[6]=
This applies only to parts of at level 1.
Out[7]=
This applies at levels 0 through 1.
Out[8]=


ja zh

AltStyle によって変換されたページ (->オリジナル) /