2d function in 3d
3 ビュー (過去 30 日間)
古いコメントを表示
felix jose chavez torres
2018 年 1 月 25 日
コメント済み: Star Strider
2018 年 1 月 26 日
i need to show this function y = x^2 in 3d in matlab
0 件のコメント
採用された回答
Star Strider
2018 年 1 月 26 日
編集済み: Star Strider
2018 年 1 月 26 日
Try this:
x = [1;1] * linspace(-4, 4, 25) ;
y = x.^2;
figure(1)
surf(x, y, [zeros(size(x(1,:))); 5*ones(size(x(1,:)))], 'EdgeColor','b')
grid on
view(-75, 45)
EDIT — Added plot.
2 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!