How to set Assumptions for function handle?

1 Ansicht (letzte 30 Tage)
Niklas Kurz
Niklas Kurz am 19 Mai 2021
Beantwortet: Stephan am 19 Mai 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?

Akzeptierte Antwort

Stephan
Stephan am 19 Mai 2021
See fimplicit3 example here and use interval argument:
f = @(x,y,z)x.^2+y.^2+z.^2-1;
fimplicit3(f, [-1, 1, -1, 1, 0, 1])

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots 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!

Translated by