#8290: Support HDF5
---------------------------+------------------------------------------------
   Reporter:  magawake     |       Owner:  GeorgSWeber         
       Type:  enhancement  |      Status:  needs_review        
   Priority:  major        |   Milestone:  sage-4.3.3          
  Component:  build        |    Keywords:  hdf5 h5py hdf5python
     Author:               |    Upstream:  N/A                 
   Reviewer:               |      Merged:                      
Work_issues:               |  
---------------------------+------------------------------------------------

Comment(by was):

 Example:
 {{{
 Here's a trivial example showing how to create a new HDF5 file and store a
 100 x 20 array of floats:

 >>> f = h5py.File("myfile.hdf5", 'w')
 >>> f["MyDataset"] = numpy.ones((100,20))

 And to get your data back:

 >>> dset = f["MyDataset"]
 >>> subset = dset[20:80,:]
 }}}
 See http://code.google.com/p/h5py/

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/8290#comment:6>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en.

Reply via email to