About 218,000 results
Open links in new tab
  1. How can I create a list of functions? - Mathematica Stack Exchange

    The method above is more general and likely easier to read but for completeness here is another method, in this specific case notably more concise: Array[# /. i_ :> (#*i*i &) &, 4] {#1 1 1 &, #1 2 2 &, …

  2. Defining functions vs using replacement rules - Mathematica Stack …

    Dec 16, 2022 · Defining functions vs using replacement rules Ask Question Asked 2 years, 11 months ago Modified 2 years, 11 months ago

  3. Function that takes another function inside - Mathematica Stack …

    @J.M. or maybe just remind people not to use capital letters to name variables and functions... a pretty useful lesson for those new to Mathematica.

  4. Turn expression into function - Mathematica Stack Exchange

    Functions in Mathematica do not have to be pure, and as such you can justifiably use Evaluate, however as you note it will not be pure (like a ton of other Mathematica functions are not mind you).

  5. Where can I find examples of good Mathematica programming practice?

    I consider myself a pretty good Mathematica programmer, but I'm always looking out for ways to either improve my way of doing things in Mathematica, or to see if there's something nifty that I haven't …

  6. What is the proper way to verify that two expressions are equal?

    Dec 15, 2013 · So with which function are these contents generated or even detected in Mathematica. A treasure trove is the section Properties & Relation of the functions documentation. We can use N or …

  7. How to use Mathematica functions in Python programs?

    Apr 23, 2012 · I'd like to know how can I call Mathematica functions from Python. I appreciate a example, for example, using the Mathematica function Prime. I had search about MathLink but how …

  8. What are some useful, undocumented Mathematica functions?

    May 7, 2015 · Szabolcs also maintains a list of Mathematica tricks which contains a list of "undocumented stuff", which can now be found archived here. So, what undocumented functions do …

  9. Functions with Options - Mathematica Stack Exchange

    Suppose you want to create a function which has optional arguments. Maeder's book Programming in Mathematica covers the topic extensively up to version 3, but some things have changed/evolved …

  10. Use different ColorFunction for each function plotted

    The above would require you knowing this information. This was easy for ListPlot since one knows how many points there are for each list. For non-discrete functions like Sin and Cos in your example, …