how to confine the solutions when solving a system of equations
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
Answers (1)
Walter Roberson
on 18 May 2015
syms x y
f = .... some formula
solve(f, x0 < x, x < x1, y0 < y, y < y1)
1 Comment
Categories
Find more on Symbolic Math Toolbox 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!