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 view (last 30 days)
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!

Accepted Answer

KSSV
KSSV on 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 Comments
A-J KHAN
A-J KHAN on 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

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!