how to plot 3d colored column of data

13 ビュー (過去 30 日間)
yasmeen hadadd
yasmeen hadadd 2022 年 9 月 25 日
編集済み: Jaswanth 2024 年 4 月 12 日 5:51
if i have the following code :
clear all
clc
[~,~,data]=xlsread('result1.xlsx');
x=cell2mat(data(:,1));
y=cell2mat(data(:,2));
z=cell2mat(data(:,3));
how to plot clored map as x variable in x-axis, y variable in y-axis , z variable in z-axis

回答 (1 件)

Jaswanth
Jaswanth 2024 年 4 月 12 日 5:28
編集済み: Jaswanth 2024 年 4 月 12 日 5:51
Hi Yasmeen,
To plot a 3D-colored column of data in MATLAB where ‘x ’ is on the x-axis, ‘y’ is on the y-axis, and ‘z’ is on the z-axis, you can use the ‘scatter3’ function. This allows you to create a three-dimensional scatter plot, and you can specify the color of each point to reflect the 'z' value.
Also, the ‘colorbar’ function can be used to add a color bar to the side of the plot to indicate the scale of the 'z' values, and the ‘colormap’ function to customize the color scheme of the plot.
For more information on the functions mentioned above, please refer to the following MathWorks documentations:
  1. 'scatter3': https://www.mathworks.com/help/matlab/ref/scatter3.html
  2. 'colorbar': https://www.mathworks.com/help/matlab/ref/colorbar.html
  3. 'colormap': https://www.mathworks.com/help/matlab/ref/colormap.html
I hope that the information provided above is helpful in accomplishing your task.
Regards,
Jaswanth

カテゴリ

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

タグ

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by