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

15 次查看(过去 30 天)
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