how to confine the solutions when solving a system of equations
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Walter Roberson
el 18 de Mayo de 2015
syms x y
f = .... some formula
solve(f, x0 < x, x < x1, y0 < y, y < y1)
1 comentario
Ver también
Categorías
Más información sobre Ordinary Differential Equations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!