how to made matrix of x,y,z from .xyz format file?

조회 수: 40 (최근 30일)
Karel Schindler
Karel Schindler 2023년 1월 6일
댓글: the cyclist 2023년 1월 12일
I have thousand lines of positions in .xyz format and im beginner in matlab. I need X, Y, Z matrix from this and make 3d graph.

채택된 답변

the cyclist
the cyclist 2023년 1월 6일
I don't know of any native MATLAB support, but it looks like the user-contributed atom submission might help you.
  댓글 수: 5
Karel Schindler
Karel Schindler 2023년 1월 12일
Sorry im late. The file has some mess on beginning. And lot of lines has 'no data' in z coordinate.
the cyclist
the cyclist 2023년 1월 12일
Looking at the header, it seems this file originates from Zygo software. This page on their web site indicates that you can "send your data to Matlab with provided sample code". It might be helpful to follow up with them.
It's a bit annoying to write code to parse this from scratch (especially not knowing how much the header might change, etc.
Personally, I would probably use the "Import Data" tool from the command window, to import the file. Depending on how many files I needed to import, and how consistent in format they are, I would have the tool write a function for the import.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Steven Lord
Steven Lord 2023년 1월 6일
There's a website that lists what applications create files with various extensions. Searching for .xyz on that site lists seven different applications that could generate such a file (using "applications" a bit loosely here) with number 3 being:
"Graph Coordinates
A number of CAD programs work with .XYZ files which are comma delimited text files containing just xyz coordinates of points in space. The free program DXF2XYZ converts a DXF file to an XYZ file. Some other 3D scanners also use this format. RapidForm Free Viewer may be able to view them. This file format is classified as Text."
Is this the definition of ".xyz format" that you're using in your question?
Does your specific .xyz file format have any sort of header information included or is it just a list of three numbers separated by commas over and over again? As long as it's "nicely" formatted (no blank lines in the middle that interrupt the regularity of the file, for example) I'd probably try calling readmatrix first.

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by