Ysweep-Xsweepデータを3次元plotしたい
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ayumi Oribe
el 25 de Dic. de 2019
Comentada: Ayumi Oribe
el 26 de Dic. de 2019
X,Y,Z 3列データをそのまま3次元plot する方法を知りたい。
sample の excel file を添付しました。
0 comentarios
Respuesta aceptada
Musashi Ito
el 25 de Dic. de 2019
ご参考までに、3次元の点またはラインをプロットする関数 plot3 でも 3次元のデータのグラフを作成できそうです。
% データの読み込み
T = readtable('sample.xlsx');
% グラフの作成
figure
plot3(T.X,T.Y,T.Z,'.')
xlabel([T.Properties.VariableNames{1} ' のデータ'])
ylabel([T.Properties.VariableNames{2} ' のデータ'])
zlabel([T.Properties.VariableNames{3} ' のデータ'])
grid on
Más respuestas (1)
Kenta
el 25 de Dic. de 2019
このような感じでいかがでしょうか。左が3次元表示です。
参考までに、右に上からみた図も載せておきます。もう少しきれいに見せる方法もあると思いますが...
clear;clc;close all
data=xlsread('sample.xlsx');
figure;pcshow(pointCloud(data))
xlabel('x軸')
ylabel('y軸')
zlabel('z軸')
figure;scatter(data(:,1),data(:,2),25,data(:,3),'filled')
colorbar
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!