Jsurf

版本 1.0.0.0 (1.4 KB) 作者: J De Freitas
3D plot onto an arbitrary surface.
1.7K 次下载
更新时间 2005/10/20

无许可证

JSURF is similar in almost all respects to the standard SURF plot except that it admits a second matrix T of z-coordinates of size [m,n] that is used to plot over the base surface described by coordinates (x,y,z).

JSURF(x,y,z,T) plots the 3D surface T onto the surface described by (x,y,z). JSURF(x,y,z,-T) plots on the underside of the surface. The colour scale is determined by the range of T.

JSURF(...,'PropertyName','PropertyValue',...) sets the surface property values for the object.

h = JSURF(...) returns the handle to the plot object.

%Peaks riding on a Saddle
P = peaks(51);
[x,y] = meshgrid(-4:8/50:4,-4:8/50:4);
z = sqrt(10^2*ones(size(x)) - 1.2*x.^2 + 1.5*y.^2);
jsurf(x,y,z,P);
axis vis3d;
axis off;
set(gca,'DataAspectRatio',[1 1 1]);

This plot function was developed under version 7 of Matlab and no guarantees can be given for versions lower than this.

引用格式

J De Freitas (2024). Jsurf (https://www.mathworks.com/matlabcentral/fileexchange/8763-jsurf), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R14SP1
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Surface and Mesh Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0