Skip to content

Commit 54976ff

Browse files
committed
Fix links to CalculateFieldData documentation
1 parent 589b7c3 commit 54976ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/parserhelp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The SCIRun parser is designed to give the user the ability to evaluate almost an
1717

1818
### Using the parser
1919

20-
Each parser has several preloaded variables available to the user. These preloaded variables in SCIRun are always denoted with an upper case variable name. For example for the {% include moduleLink.md moduleName='CalculateFieldData' %} has the following variables available:
20+
Each parser has several preloaded variables available to the user. These preloaded variables in SCIRun are always denoted with an upper case variable name. For example for the [CalculateFieldData](modules.html#CalculateFieldData) has the following variables available:
2121

2222
`DATA, X,Y,Z, POS`
2323

@@ -31,7 +31,7 @@ This will assign the value of `sin(X) + cos(Y)` to `MYDATA`, where `X` and `Y` a
3131

3232
As the output of the expression is a vector `MYDATA` will now be an array of vectors instead of an array of scalars as in the previous example.
3333

34-
To assign any data to the output of a module, certain variables need to be assigned. For example in case of the {% include moduleLink.md moduleName='CalculateFieldData' %}, the output variable is called `RESULT` and hence a second expression can be added to assign the newly created vector to the output:
34+
To assign any data to the output of a module, certain variables need to be assigned. For example in case of the [CalculateFieldData](modules.html#CalculateFieldData), the output variable is called `RESULT` and hence a second expression can be added to assign the newly created vector to the output:
3535

3636
`MYDATA = vector(Y,X,2*Z); RESULT = MYDATA;`
3737

0 commit comments

Comments
 (0)