How to plot this 3d graph?

1 回表示 (過去 30 日間)
Michele
Michele 2013 年 4 月 9 日
Hi to all. How can i plot the graph of z=x^3+y^3+3xy with two lines colored: one described by x=0 and the other described by y=0 , both included in the function graph?

採用された回答

Jonathan Epperl
Jonathan Epperl 2013 年 4 月 9 日
Plot the whole graph with mesh or surf, then hold on, then use plot3 to plot the lines you'd like to emphasize:
x = linspace(-3,3);
[X,Y] = meshgrid( x );
mesh(X,Y, X.^3 + Y.^3+ 3*X.*Y);
hold on;
plot3(x*0, x, x.^3,'r','LineWidth',4);
plot3(x, x*0, x.^3,'r','LineWidth',4);
hold off;
  1 件のコメント
Michele
Michele 2013 年 4 月 10 日
many thanks Jonathan.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by