How to set Assumptions for function handle?

조회 수: 1 (최근 30일)
Niklas Kurz
Niklas Kurz 2021년 5월 19일
답변: Stephan 2021년 5월 19일
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?

채택된 답변

Stephan
Stephan 2021년 5월 19일
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])

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by