Effacer les filtres
Effacer les filtres

I have some .txt files containing 2 columns of number (x,y) of each point identified by the x,y coordinates. I should find a way to produce an image file (the format is not important, it may be a .jpg for example) in which the x, y coordinate ar

1 vue (au cours des 30 derniers jours)
I have some .txt files containing 2 columns of number (x,y) of each point identified by the x,y coordinates. I should find a way to produce an image file (the format is not important, it may be a .jpg for example) in which the x, y coordinate are identified of the .txt file (x and y coordinates). How can I concert the coordinates into an image?
Thanks!

Réponse acceptée

KSSV
KSSV le 13 Mar 2018
A = importdata('file1.txt') ;
B = importdata('file2.txt') ;
x1 = A(:,1) ; y1 = A(:,2) ;
x2 = B(:,1) ; y2 = B(:,2) ;
plot(x1,y1,'r') ;
hold on
plot(x2,y2,'b') ;
saveas(gcf,'myimage.png')
  3 commentaires
A-J KHAN
A-J KHAN le 14 Mar 2018
can you please help me how to used this code for whole folder at once because its very hard to test one by one contour. Thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by