help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Using cell2csv


From: Terry Duell
Subject: Re: Using cell2csv
Date: Thu, 13 Jun 2013 09:18:00 +1000
User-agent: Opera Mail/12.15 (Linux)

Hello Michael,

On Wed, 12 Jun 2013 09:59:40 +1000, seektime <address@hidden> wrote:

[snip]


fill your "datavals" array using this syntax:

datavals{1,1}='header1';
datavals{1,2}='header2';
...
datavals{2,3}=30;

So that when you call datavals you see this in the stdout:

datavals =
{
  [1,1] = header1
  [2,1] =  10
  [1,2] = header2
  [2,2] =  20
  [1,3] = header3
  [2,3] =  30
}

Hope this helps,
Michael

Yes it did.
It is all now working as I wanted.

Thanks for your help.

Cheers,
--
Regards,
Terry Duell


reply via email to

[Prev in Thread] Current Thread [Next in Thread]