Importing coordinates from excel and making points.
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Matija Kosak
am 20 Jun. 2018
Bearbeitet: Abel Francis
am 18 Okt. 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
0 Kommentare
Akzeptierte Antwort
KSSV
am 20 Jun. 2018
[num,txt,raw] = xlsread('myfile.xlsx') ;
X = num(:,1) ;
Y = num(:,2) ;
Z = num(:,3) ;
plot3(X,Y,Z,'.')
9 Kommentare
Abel Francis
am 18 Okt. 2020
Bearbeitet: Abel Francis
am 18 Okt. 2020
Is it possible to import coordinates in DMS from excel file into MATLAB?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!