Clear Filters
Clear Filters

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

15 views (last 30 days)
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.

Accepted Answer

the cyclist
the cyclist on 6 Jan 2023
I don't know of any native MATLAB support, but it looks like the user-contributed atom submission might help you.
  5 Comments
Karel Schindler
Karel Schindler on 12 Jan 2023
Sorry im late. The file has some mess on beginning. And lot of lines has 'no data' in z coordinate.
the cyclist
the cyclist on 12 Jan 2023
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.

Sign in to comment.

More Answers (1)

Steven Lord
Steven Lord on 6 Jan 2023
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.

Categories

Find more on Environment and Settings in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!