How to set Assumptions for function handle?
    10 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Niklas Kurz
 el 19 de Mayo de 2021
  
    
    
    
    
    Respondida: Stephan
      
      
 el 19 de Mayo de 2021
            easy case:
I'v gut a function handle: 
f = @(x,y,z)x.^2+y.^2+z.^2-1;
fimplicit3(f)
for plotting an implicit function. Now I also want to assume z > 0
What's the deal? 
0 comentarios
Respuesta aceptada
  Stephan
      
      
 el 19 de Mayo de 2021
        f = @(x,y,z)x.^2+y.^2+z.^2-1;
fimplicit3(f, [-1, 1, -1, 1, 0, 1])
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Numerical Integration and 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!


