We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b79b3d commit b281c22Copy full SHA for b281c22
README.md
@@ -47,13 +47,18 @@ The function syntax is mostly identical to the syntax of the C++ API. The follow
47
As an example, the C++ API function
48
49
```bash
50
-readData(int dataID, int size, const int *valueIndices, double *values)
+void readData(
51
+ ::precice::string_view meshName,
52
+ ::precice::string_view dataName,
53
+ ::precice::span<const VertexID> ids,
54
+ double relativeReadTime,
55
+ ::precice::span<double> values) const
56
```
57
58
is found in the MATLAB bindings as
59
60
-values = readData(dataID, valueIndices)
61
+values = readData(meshName, dataName, ids, relativeReadTime)
62
63
64
## Out of process variant
0 commit comments