... | ... | @@ -11,9 +11,9 @@ Here, `real8` denotes the double-precision (default), if one wants to save a spa |
|
|
|
|
|
If there is a `complex` number one wants to store then in order to add:
|
|
|
```c
|
|
|
wdata_variable vdelta = {"delta", "complex8", "none", "wdat"};
|
|
|
wdata_variable vdelta = {"delta", "complex16", "none", "wdat"};
|
|
|
```
|
|
|
here, `complex8` denotes the double-precision (default).
|
|
|
here, `complex16` denotes the double-precision (default), if one wants to save a space and store variable in single-precision one should change it to `complex8`.
|
|
|
|
|
|
Similar syntax is used in `vector`s variable:
|
|
|
```c
|
... | ... | |