2011/1/3, Dominik Szczerba <domi...@itis.ethz.ch>:
> Many thanks for useful hints. Some questions to them:
>
> 1) Where is a list of constructor options for carray, I could not find it in
> the document you referenced.

Constructors are documented here:

http://www.pytables.org/docs/manual/ch04.html#FileMethods_hierarchy_manipulation

> 2) Will the "decent value" when chunk size is not specified handle properly
> a case where my matrix is ordered like fortran (column-wise)?

Uh, no, automatic computation of shapes are only valid for C convention.

And for your third question, you can create an empty CArray, and the
feed it with values.  Something like:

carray = f.createCArray(...)
carray[:] = your_numpy_array

Cheers,

-- 
Francesc Alted

------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Pytables-users mailing list
Pytables-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pytables-users

Reply via email to