Importing coordinates from excel and making points.
1 回表示 (過去 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!