Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Hi......how to create an image in Matlab from .txt file?

1 vue (au cours des 30 derniers jours)
A-J KHAN
A-J KHAN le 13 Mar 2018
Commenté : A-J KHAN le 13 Mar 2018
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?
The sample is attached here..
Thanks!
  1 commentaire
A-J KHAN
A-J KHAN le 13 Mar 2018
data = importdata('data.txt') ; x = data(:,1) ; y = data(:,2) ; z = data(:,3) ; xi = unique(x) ; yi = unique(y) ; nx = length(xi) ; ny = length(yi) ; X = reshape(x,nx,ny) ; Y = reshape(y,nx,ny) ; Z = reshape(z,nx,ny) ; surf(X,Y,Z) ; view(2) shading interp axis tight saveas(gcf,'myfile.jpg')
I got some help but i still have problem to created image format

Réponses (0)

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by