madness
- 813
- 69
I have a function which depends on several physical constants, which I want to be able to vary each time I make a plot. What is the best way to do this?
The discussion revolves around how to vary physical constants in Mathematica plots, focusing on methods for efficiently managing multiple constants during plotting. The scope includes technical explanations and practical applications within Mathematica.
Participants present multiple approaches to the problem, with no consensus on the best method. Some methods are proposed as alternatives to others, indicating a variety of opinions on efficiency and practicality.
Participants express uncertainty about the best way to implement their ideas, particularly regarding the use of lists for constants and the functionality of slider bars in Mathematica.
Users of Mathematica looking to plot functions with variable physical constants, particularly those managing multiple constants in their models.
DynamicModule[{x = Random[]},
Column[Table[
Slider[Dynamic[x], ImageSize -> RandomReal[200]], {10}]]]