Solve Blocks > Parameterizing Solve Blocks
  
Parameterizing Solve Blocks
Each solve block returns one solution (or one set of solutions for ODEs). You can use this solution below or to the right of the solve block region. Alternatively, you can add parameters to the solve block. The output of the solve block is then a function of the parameters.
Click to copy this expression
Click to copy this expression
Click to copy this expression
When you specify a new parameter value, the function calls the solve block and returns the solution for that value.
Click to copy this expression
Click to copy this expression
This is especially useful for plotting solve block solutions.
Click to copy this expression
Additionally, you can work with a solve block solution inside a second solve block.
Click to copy this expression
The constraint, (2 - 0.1x), is being applied to function f(x) which is defined in the first solve block.
The solution found by the find function is the intersection of the constraint line with f(x).
Click to copy this expression
Parametrizing Solutions
The output of a solve block may be assigned to a single variable that can be used throughout the worksheet or inside other solve blocks.
Click to copy this expression
Here the find function is unable to find a solution because the constraint is a function that does not intersect function f(x).
Evaluate function f(x) at the guess value and assign the result to a variable.
Click to copy this expression
Click to copy this expression
The constraint is now applied to constant sol or f(3), and the solution found by the find function is the intersection of sol and the constraint function.
Click to copy this expression