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!