Matlab - inecuaciones en matlab

 
Vista:

inecuaciones en matlab

Publicado por Cristian Orozco (2 intervenciones) el 21/02/2016 17:22:38
Buenas tardes quisiera saber como hago para desarrollar en matlab
este tipo de desigualdad o inecuacion '1<=4-t<2' lo intente con la funcion solve pero no me funciono me arroja una respuesta que no es congruente .

Quedo atento Gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de JOSE JEREMIAS CABALLERO
Val: 6.975
Oro
Ha mantenido su posición en Matlab (en relación al último mes)
Gráfica de Matlab

inecuaciones en matlab

Publicado por JOSE JEREMIAS CABALLERO (5917 intervenciones) el 22/02/2016 14:16:47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
='editor_code'>Solve Inequalities
 
solve can solve inequalities to find a solution that satisfies the inequalities.
 
Solve the following inequalities. Set ReturnConditions to true to return any parameters in the solution and conditions on the solution.
 
 
 
x>0
 
y>0
 
x
2
+y
2
+xy<1
 
 
 
syms x y
S = solve(x^2 + y^2 + x*y < 1, x > 0, y > 0,...
          [x, y], 'ReturnConditions', true);
 
solx = S.x
soly = S.y
params = S.parameters
conditions = S.conditions
solx = (- 3*v^2 + u)^(1/2)/2 - v/2 soly = v params = [ u, v] conditions = 4*v^2 < u & u < 4 & 0 < v
http://es.mathworks.com/help/symbolic/solve.html?s_tid=gn_loc_drop
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar