how to confine the solutions when solving a system of equations
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Walter Roberson
am 18 Mai 2015
syms x y
f = .... some formula
solve(f, x0 < x, x < x1, y0 < y, y < y1)
1 Kommentar
Siehe auch
Kategorien
Mehr zu Ordinary Differential Equations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!