Borrar filtros
Borrar filtros

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 visualización (últimos 30 días)
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!

Respuesta aceptada

KSSV
KSSV el 13 de Mzo. de 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 comentarios
A-J KHAN
A-J KHAN el 14 de Mzo. de 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

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by