Path: news.mathworks.com!not-for-mail
From: "Sachitha Obeysekara" <sachitha.2.obeysekara@gsk.com>
Newsgroups: comp.soft-sys.matlab
Subject: seperating numbers from a cell array
Date: Mon, 30 Jul 2007 11:15:10 +0000 (UTC)
Organization: GSK
Lines: 26
Message-ID: <f8kh7u$dll$1@fred.mathworks.com>
Reply-To: "Sachitha Obeysekara" <sachitha.2.obeysekara@gsk.com>
NNTP-Posting-Host: webapp-00-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1185794110 14005 172.30.248.35 (30 Jul 2007 11:15:10 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Mon, 30 Jul 2007 11:15:10 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1069567
Xref: news.mathworks.com comp.soft-sys.matlab:421664


hi,
i have a cell array:

b =

T1,0,0,0,0,00256.964
T1,0,0,0,0,00256.656
T1,0,0,0,0,00256.869
T1,0,0,0,0,00257.666
T1,0,1,1,0,00246.296
...and so on

how do i seperate out so that i have a array like this:
c = 

0 0 0 0 00256.964
0 0 0 0 00256.656
0 0 0 0 00256.869
0 0 0 0 00257.666
0 1 1 0 00246.296
..and so on

the T1 field can be discarded 

Cheers