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 Center および File ExchangeLine Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by