plot3c

版本 1.0.0.0 (1.2 KB) 作者: Ulrich Theune
Plots data color coded in 3D.
9.6K 次下载
更新时间 2005/1/31

无许可证

FUNCTION PLOT3C(X,Y,Z,V,'MARKER',Title') plots the values in vector v colour coded at the positions specified by the vectors x, y, and z in a 3-D axis system. A colourbar is added on the right side of the figure.

The colorbar strectches from the minimum value of v to its maximum in 9 steps (10 values).
The second last argument is optional to define the marker being used. The default is a point. To use a different marker (such as circles, ...) send its symbol to the function (which must be enclosed in '; see example).

This function is an extension of PLOTC.

Example:
The seismic P-velocity (v) depends on the three parameters porosity (por) and the bulk moduli of the saturating fluid (kf) and the elastic frame (kd). To plot the velocity data as a function of these three parameters use (assuming that all data are given in vectors):

plot3c(por,kd,kf,v,'d','Velocity')

引用格式

Ulrich Theune (2024). plot3c (https://www.mathworks.com/matlabcentral/fileexchange/5735-plot3c), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R12.1
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 2-D and 3-D Plots 的更多信息
致谢

启发作品: Color coded 3D scatterplot, qgriddata

Community Treasure Hunt

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

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

Added optional title for the colorbar, changed the labelling of the colorbar, and added a test whether all vectores are of the same length