Plotting two functions on 3D surface for the same interval

8 次查看(过去 30 天)
Hello
I have two functions, say
Z1=x^2
Z2=x^3
x: 0:10
How i can create a 3D surface plot
thanks in advance

采纳的回答

Star Strider
Star Strider 2020-1-24
Try this:
x = 0:10;
Z1=x.^2;
Z2=x.^3;
figure
surf(Z1.'*Z2)
Another possibility:
figure
surf([Z1; Z2])
It is not certain what you want.
  4 个评论
Star Strider
Star Strider 2020-1-25
Fuad Nammas’s Answer moved here —
why is the scale on the x-axis on the plot does not fit the given interval x:0:10

请先登录,再进行评论。

更多回答(3 个)

Fuad Nammas
Fuad Nammas 2020-1-25
sooooo many thanks dear Star Strider
it works now
thanks with appreciation
you are super hero

Fuad Nammas
Fuad Nammas 2020-1-25
Dear Star Strider
one last question..
How i can give a different color for each function
i mean
color for Z1 and another color for Z2
i will be greatfull for you
regards
  1 个评论
Star Strider
Star Strider 2020-1-25
That is not possible as you have defined the plot.
The ‘x’ and ‘Z1’ vectors define the axes, so only ‘Z2’ can have color associated with the surface plot.

请先登录,再进行评论。


Fuad Nammas
Fuad Nammas 2020-1-25
many thanks Mr.Strider
God Bless you

类别

Help CenterFile Exchange 中查找有关 Graphics Object Properties 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by