3D plotting base surface

4 次查看(过去 30 天)
Darkhan Sheldebayev
Hi there, i have a 3D figure i need to make a base for that . Should it be rectancgle and how to fill it?Many thanks :o

回答(1 个)

Star Strider
Star Strider 2019-12-8
I am not certain what you are asking.
The plot appears to be by the stem3 function.
Try this:
x = randn(1, 10);
y = randn(1, 10);
z = randn(1, 10);
figure
stem3(x, y, z, 'filled')
hold on
xl = xlim;
yl = ylim;
hs = surf(xl, yl, zeros(size(xl(:)*yl)));
set(hs, 'FaceAlpha',0.2, 'FaceColor',[0.6 0.6 0.6])
hold off
grid on
producing:
3D plotting base surface - 2019 12 08.png
Experiment to get different results.

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by