how to confine the solutions when solving a system of equations
1 view (last 30 days)
Show older comments
hi,
how can I set the interval of definition of variables, solves using the function solve ()?
interval solution: x0<x<x1, y0<y<y1, z0<z<z1, equations to resolve: f(x,y)=0,f(x,z)=0 and f(y,z)=0
0 Comments
Answers (1)
Walter Roberson
on 18 May 2015
syms x y
f = .... some formula
solve(f, x0 < x, x < x1, y0 < y, y < y1)
See Also
Categories
Find more on Ordinary Differential Equations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!