Path: news.mathworks.com!newsfeed-00.mathworks.com!newsfeed2.dallas1.level3.net!news.level3.com!postnews.google.com!a36g2000yqc.googlegroups.com!not-for-mail
From: Rune Allnor <allnor@tele.ntnu.no>
Newsgroups: comp.soft-sys.matlab
Subject: Re: breaking up a large matrix before loading into matlab
Date: Fri, 3 Jul 2009 02:31:19 -0700 (PDT)
Organization: http://groups.google.com
Lines: 21
Message-ID: <b625724c-d941-489a-82e3-c21de4d121d2@a36g2000yqc.googlegroups.com>
References: <18789979.66027.1246568708618.JavaMail.jakarta@nitrogen.mathforum.org>
NNTP-Posting-Host: 77.17.114.38
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
X-Trace: posting.google.com 1246613479 8836 127.0.0.1 (3 Jul 2009 09:31:19 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Fri, 3 Jul 2009 09:31:19 +0000 (UTC)
Complaints-To: groups-abuse@google.com
Injection-Info: a36g2000yqc.googlegroups.com; posting-host=77.17.114.38; 
	posting-account=VAp5gAkAAAAmkCze5hvZtMeedpZWNthI
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; 
	Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 
	3.5.21022),gzip(gfe),gzip(gfe)
Xref: news.mathworks.com comp.soft-sys.matlab:552643


On 2 Jul, 23:04, gary12345 <garycy...@yahoo.ca> wrote:
> Does anybody know how I can load parts of a matrix into matlab instead of all at once? because matlab won't allow me to load it all at once because the matrix is too big. Thanks.

If you have a wintel multi-core PC, then try this:

- Push <ctrl>-<alt>-<del> to bring up the task manager
- Right-click on the matlab process in the processes view
- Select 'set affinity...' in the pop-up menu
- De-select CPU0
- Press 'OK'

This will cause the matlab process to be run on one
of the other cores available. With a little luck,
the OS and most of the other processes run on CPU0
core, meaning lots of the memory associated with this
core is not available to matlab.

If this doesn't work, try the same again but deselect
some other core.

Rune