Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

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

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?
The sample is attached here..
Thanks!
  1 Comment
A-J KHAN
A-J KHAN on 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

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!