PDA

View Full Version : MATLAB reading in figure matrices


Klandhee
Oct27-10, 10:12 AM
Hi, I have a bunch of images saved as .fig and I need to obtain the data in these files. I tried something as simple as
image1 = imread('figure1.fig');
but it does not recognize the format. If anyone could help me out that would be greatly appreciated, thanks!

MikeyW
Oct28-10, 03:25 AM
imread won't work because a .fig is not exactly an image file.


Try:

"open('figure1.fig')"

That will load up the entire image. I don't know if it's possible to get the original data used to plot the graphs though.