Plot[y=x, {x, -1, 1}, PlotPoints -> 24, MaxRecursion -> 0,
ColorFunctionScaling -> False, BoundaryStyle -> None, MaxRecursion -> 0]
I will make several plots using the same sentences PlotPoints -> 24, MaxRecursion -> 0, ColorFunctionScaling -> False, BoundaryStyle -> None, MaxRecursion -> 0. How can I define variable= PlotPoints -> 24, MaxRecursion -> 0, ColorFunctionScaling -> False, BoundaryStyle -> None, MaxRecursion -> 0 to simplfy the code like this:
Plot[y=x, {x, -1, 1}, variable]
variable = {PlotPoints -> 24, MaxRecursion -> 0, ColorFunctionScaling -> False, BoundaryStyle -> None, MaxRecursion -> 0}; Plot[x, {x, -1, 1}, Evaluate@variable]? – kglr Apr 09 '16 at 03:05Sequence@@list. – Yves Klett Apr 09 '16 at 06:04