Effacer les filtres
Effacer les filtres

Importing coordinates from excel and making points.

6 vues (au cours des 30 derniers jours)
Matija Kosak
Matija Kosak le 20 Juin 2018
Modifié(e) : Abel Francis le 18 Oct 2020
Hello. I need to import 3D coordinates from excel to matlab and make points in matlab from those coordinates, I have three columns for each X, Y and Z coordinate. Thanks for help

Réponse acceptée

KSSV
KSSV le 20 Juin 2018
[num,txt,raw] = xlsread('myfile.xlsx') ;
X = num(:,1) ;
Y = num(:,2) ;
Z = num(:,3) ;
plot3(X,Y,Z,'.')
  9 commentaires
Matija Kosak
Matija Kosak le 21 Juin 2018
Do you maybe know any way that is possible? maybe something with point cloud?
Abel Francis
Abel Francis le 18 Oct 2020
Modifié(e) : Abel Francis le 18 Oct 2020
Is it possible to import coordinates in DMS from excel file into MATLAB?

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by