Azzera filtri
Azzera filtri

How can I dynamically create equations for fsolve?

4 visualizzazioni (ultimi 30 giorni)
lzeeysjp
lzeeysjp il 11 Ott 2018
Risposto: Walter Roberson il 11 Ott 2018
I need to solve a large system of non-linear equations (static truss system). The equations are derived from nodes (xyz), forces (xyz) and their constraints (position, forces).
How can I set-up equations like the following ones for fsolve dynamically?
F(1) = exp(-exp(-(x(1)+x(2)))) - x(2)*(1+x(1)^2);
F(2) = x(1)*cos(x(2)) + x(2)*sin(x(1)) - 0.5;
Or is there no good way to do this and it can only be handled by a symbolic solver like Mathematica? But even symbolic tools have to put the equations together somehow.
Does someone have an idea on how this works?
  2 Commenti
KSSV
KSSV il 11 Ott 2018
Run a loop.....and store the result into a cell array.
lzeeysjp
lzeeysjp il 11 Ott 2018
But I don't have the equations. I need to create them somehow from the input. E.g. I need to look through all my input to see where Node1 is listed, e.g. by its position or by an equilibrium of forces with a neighbouring node. That for all nodes and forces.

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 11 Ott 2018
If need be you can use str2func()
However I suspect that more appropriate would be to categorize into cases and call auxiliary construction functions passing in appropriate data with the construction functions returning anonymous functions that have captured appropriate data values. For example a cell array of function handles that you cellfun over, passing in x to each one, sum() the results.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by