Skip to content
Snippets Groups Projects
  1. Jun 17, 2020
  2. Jun 15, 2020
  3. Apr 23, 2020
  4. Jan 30, 2020
  5. Jan 24, 2020
  6. Jan 23, 2020
  7. Jan 22, 2020
  8. Jan 20, 2020
  9. Jan 18, 2020
  10. Jan 16, 2020
  11. Jan 14, 2020
  12. Jan 13, 2020
    • Stephan Seitz's avatar
      Make add_arrays return fields to arrays · e5f4c74d
      Stephan Seitz authored
      e5f4c74d
    • Stephan Seitz's avatar
      Add DataHandling.add_arrays · 1b4ace3e
      Stephan Seitz authored
      This adds a function for lazy people who want to write
      
      ```python
      dh = create_data_handling((20, 30))
      dh.add_arrays('x, y(9), z')
      ```
      
      instead of
      
      ```python
      dh = create_data_handling((20, 30))
      dh.add_array('x')
      dh.add_array('y', values_per_cell=9)
      dh.add_array('z')
      ```
      
      because in most cases you want to use more than one array.
      1b4ace3e