Treatment G-code file
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I have a G-code file as you can see in the following structure :
How I can with matlab to find the number of rows which carry the character of Z and to copy the instructions between two defined rows in another file .txt.
Thank you
2 commentaires
Rik
le 8 Juin 2020
It sounds like you can just read this file as text and use contains to look for a Z.
Réponse acceptée
Rik
le 8 Juin 2020
Modifié(e) : Rik
le 8 Juin 2020
str = fileread('gcode.txt');
cell_str=strsplit(str,'\n')
character = 'Z';
TF = contains(cell_str,character);
line_num=find(TF);
6 commentaires
Rik
le 8 Juin 2020
You're welcome. If you feel my answer solved your question, please mark it as accepted answer. If not, feel free to comment with your remaining issues.
Plus de réponses (1)
Bjorn Gustavsson
le 8 Juin 2020
Maybe the easiest way it to loop through the text line-by-line and check if it contains the character 'Z' using strfind or findstr. Then it should be perfectly straightforward to keep the indices where you find your Zs.
HTH
0 commentaires
Voir également
Catégories
En savoir plus sur Whos dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!