I have the following problem, when defining and using a function, that's supposed to have an outside parameter xmin:
A[x_] := Exp[-x/Subscript[x, min]]
A[5]
E^(-(5/Subscript[5, min]))
What can I do about it? I do not really want to rename the parameter to xmin ;)
Subscript["x", "min"]instead ofSubscript[x, min]– Karsten7 Aug 15 '14 at 11:31