Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: big bug with GUIDE
Date: Wed, 12 Aug 2009 21:31:01 +0000 (UTC)
Organization: Universit&#228;t Heidelberg
Lines: 15
Message-ID: <h5vcak$4hv$1@fred.mathworks.com>
References: <gl36da$6ih$1@fred.mathworks.com> <glmsmo$mb7$1@fred.mathworks.com> <e538a250-1a99-4731-b6b1-2336da4ec876@r10g2000prf.googlegroups.com> <glskpu$htc$1@fred.mathworks.com> <h5t2lq$5mr$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-05-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1250112661 4671 172.30.248.35 (12 Aug 2009 21:31:01 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Wed, 12 Aug 2009 21:31:01 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 869888
Xref: news.mathworks.com comp.soft-sys.matlab:562834


Dear Naresh Pai!

> > >> load -mat myFigFile.fig
> > >> % edit the structure
> > >> save -mat myFigFile.fig 

> I am using Matlab 2008a and the GUI developed keeps getting corrupt. 
> When I try to load using the command prompt nothing happens.

"Nothing" is less than I'd expect.
If you "load" the file, the contents is imported as variables in the work spaces. So "whos" should show you the imported data.
It is less confusing to import the data to a variable:
  FigData = load('myFigFile.fig', '-mat')

Good luck, Jan