Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: How to free an array  in the function
Date: Sat, 27 Dec 2008 02:55:03 +0000 (UTC)
Organization: Boeing
Lines: 11
Message-ID: <gj45e7$djo$1@fred.mathworks.com>
References: <gj43i6$l2n$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1230346503 13944 172.30.248.37 (27 Dec 2008 02:55:03 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Sat, 27 Dec 2008 02:55:03 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 756104
Xref: news.mathworks.com comp.soft-sys.matlab:508862


"zedong 
" <zdongwu@gmail.com> wrote in message <gj43i6$l2n$1@fred.mathworks.com>...
> for example:
> function f()
> a=ones(1000,10000);
> .......%This is some code with respect to a.Now a is no longer need.Now I want to free a    %and  do some other things,What should I do?
> b=zeros(1000,5000);%I must free a.
> end% the end of the function

clear a