Combining two surface plots

41 次查看(过去 30 天)
I'm trying to combine two surface plots in a single figure. The problem is that one of the two is plotted on the wrong axis. The reason is that:
surface1 = surf(x,y,z)
surface2 = surf(x,z,y)
This is due to the mathematical equations behind x,z and y. I can't change them, i.e. rearrange z in terms of y for surface2.
Is there a way to map the two to the correct axes?
  2 个评论
KSSV
KSSV 2021-7-30
An example image will help to understand the problem.
turjdlawef
turjdlawef 2021-7-30
编辑:Walter Roberson 2021-7-30
Sure, here's a screenshot:
The green one is rotated wrongly; this is because the z variable is p in this case, whilst for the yellow it is a. When
i.e.
yellow = surf(x,p,a), green = surf(x,a,p)
It seems to me that I can't change the order in surf because that means rearranging the underlying equations, which I can't do in this case. When I combine the two in a single figure, a and p are inverted. It's difficult to see graphically but I'm sure that that's the problem ... just don't know how to fix it :( This instead is what the correct blue surface should be:

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2021-7-30
You can
ax = gca;
yellow = surf(ax, x, p, a);
hold(ax, 'on')
M = [1 0 0 1; 0 0 1 0; 0 1 0 0; 0 0 0 0];
hg = hgtransform(ax, 'Matrix', M);
green = surf(hg, x, a, p);
hold(ax, 'off')
xlim(ax, 'auto'); ylim(ax, 'auto'); zlim(ax, 'auto');
  5 个评论
turjdlawef
turjdlawef 2021-7-30
Is it because, after hg, I've recreated a?
a = meshgrid(linspace(0,1,10));
Walter Roberson
Walter Roberson 2021-7-30
In order for green = surf(hg, x, a, p); to work, then:
  • if x is a vector, then length(x) == size(p,2) -- columns not rows
  • if x is an array, then size(x) == size(p)
  • if a is a vector, then length(a) == size(p,1) -- rows not columns
  • if a is an array, then size(a) == size(p)
It is not an error to use an array for x by a vector for a, or a vector for x but an array for a, or a vector for both or an array for both -- but they have to match the appropriate dimension of p.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by