How to fucntions like plot f(x,y) = 2 when 0<=x<=1 and 0<=y<=x
2 次查看(过去 30 天)
显示 更早的评论
I'm struggling to do so. Any help will be appriciated.
1 个评论
Adam
2018-3-27
f(x,y) = 2 is just a single point result isn't it? Irrespective of x and y the answer is 2
采纳的回答
Christopher Creutzig
2018-3-27
If the region to plot over were a simple 0 ≤ x ≤ 1 and 0 ≤ y ≤ 1, you could use fimplicit(f(x,y) - 2, [0 1 0 1]). I don't think there is a good way of restricting the plotting domain to the triangle you are looking for, though. You could just cover the upper triangle with a fill([0 1 1], [1 0 1], [1 1 1]) call, I guess …
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!