Linked Questions
64 questions linked to/from Injecting a sequence of expressions into a held expression
1 vote
1 answer
267 views
Using With in combination with Graphics [duplicate]
Assume that we are given a symbol p={x,y} which should represent a 2D point. If x and y have ...
1 vote
1 answer
168 views
How to get LogPlot to accept a Sequence for its Min/Max Limits [duplicate]
If you use Plot like this, Plot[Sin[x], {x, 1, 5}] it produces the correct Sin graph ...
2 votes
3 answers
147 views
Function of a function, both of a list of variables
I am trying to avoid dealing with long explicit lists of variables. What i do so far is the following: VarList={x_, y_}; ParList={x, y}; ValList={2, 3}; What ...
2 votes
1 answer
184 views
Writing a procedure that invokes Manipulate[]
I would like to write a procedure with the signature: Foo[vars, params] which produces a Manipulate object. The procedure ...