Skip to content
Snippets Groups Projects
Commit 1b4ace3e authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Add DataHandling.add_arrays

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.
parent 171d844a
Branches
Tags
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment