plot a function in 3D

I have variables a and b both defined in [-1,+1] and the function c = a / (a + b)
How can I plot c in 3D to visualize the function?

 采纳的回答

RESOLUTION=20; %increase this for a finer grid
t = linspace(-1,1,RESOLUTION);
[a,b] = ndgrid(t,t);
c = a./(a+b);
surf(a,b,c);
It is, however, not possible to plot it as a continuous surface, as your graphics display only has discretized output locations ("pixels").

3 个评论

the result does not look correct plus where I do exactly the same for
t = linspace(0,1,RESOLUTION);
i get a different result for that part of the graph
why do you think it does not look correct?
it is correct. the resolution is too coarse and confused me. thanks for your help.

请先登录,再进行评论。

更多回答(1 个)

bym
bym 2011-8-12
a= rand(10,1)*2-1
b=rand(10,1)*2-1
c=a./(a+b)
scatter3(a,b,c)

1 个评论

thanks, but can I plot it as a continuous surface. For all values, not just random samples?

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by