Skip to content
Snippets Groups Projects
  1. Jan 16, 2020
  2. Jan 15, 2020
  3. Jan 14, 2020
  4. 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
  5. Jan 10, 2020
  6. Jan 09, 2020
  7. Jan 08, 2020