Importing coordinates from excel and making points.
6 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
KSSV
2018-6-20
[num,txt,raw] = xlsread('myfile.xlsx') ;
X = num(:,1) ;
Y = num(:,2) ;
Z = num(:,3) ;
plot3(X,Y,Z,'.')
9 个评论
Abel Francis
2020-10-18
编辑:Abel Francis
2020-10-18
Is it possible to import coordinates in DMS from excel file into MATLAB?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!