Assigning symbolic results from a solve block
Assigning symbolic results from a solve block
(OP)
Hi,
If I use a Solve block (Given..Find) to solve a set of symbolic equations, is it possible to assign one or more of those symbolic solutions to another variable (and hence define a function) that will be automatically updated whenever I change something within the solve block?
For instance, in the example below,
Given
ax + by = c
xy = d
Find(x,y) -> (...)
I would like to define a new function as the symbolic solution "x" such that the new function is updated if I change the Given..Find block above.
Thanks!
If I use a Solve block (Given..Find) to solve a set of symbolic equations, is it possible to assign one or more of those symbolic solutions to another variable (and hence define a function) that will be automatically updated whenever I change something within the solve block?
For instance, in the example below,
Given
ax + by = c
xy = d
Find(x,y) -> (...)
I would like to define a new function as the symbolic solution "x" such that the new function is updated if I change the Given..Find block above.
Thanks!
RE: Assigning symbolic results from a solve block
If you assign A:find(x,y), A[0 is assigned to x and A[1 is assigned to y
TTFN