Tagged Questions
10
votes
3answers
278 views
Labeling plots without evaluation
This is my first question here so please excuse my mistakes.
Let us consider a rather contrived example:
...
1
vote
2answers
82 views
What is the default file path used by the Put function and how do I pre-evaluate an expression to use in Put?
I have a problem of trying to store some output in an external file.
In one note book I define a function f[x_]:=AdvancedCalculation, where this function generates ...
9
votes
4answers
168 views
Leave expression tree formatting the same when a replacement rule is applied
If I type e1 := 3 x + 2 (1 + y) z // TreeForm, I get an expression tree. If I then type e1 /. x -> 3, I get another ...
10
votes
7answers
252 views
Question about evaluation control
I want to make a function that takes a function as a parameter and prints an integral with the function inside. I've tried this:
...