[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Octave charMatrix to C++ char array
From: |
c. |
Subject: |
Re: Octave charMatrix to C++ char array |
Date: |
Thu, 15 Aug 2013 01:44:45 +0200 |
On 14 Aug 2013, at 21:51, Lukas Reichlin <address@hidden> wrote:
> Dear Octave Community
>
> How can I convert a charMatrix to a C++ char array in an oct-file?
>
> Thanks for any hints,
> Lukas
Does this help:
http://octave.sourceforge.net/doxygen/html/db/d5b/classcharMatrix.html ?
It seems charMatrix is just an interface for Array <char> so you should be
able to get a char* out of it via the "fortran_vec" method.
c.