Skip to content

Commit 799d422

Browse files
committed
Update README.md
1 parent c4bb93a commit 799d422

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Users can register custom modules to expose and use their functions through the
7373
## Working with arrays
7474
VBA expressions can evaluate matrix functions whose arguments are given as arrays/vectors, using a syntax like [Java](https://www.w3schools.com/java/java_arrays.asp). The following expression will calculate the determinant (`DET`) of a matrix composed of 3 vectors with 3 elements each:
7575

76-
`DET({{sin(atn(1)\*2); 0; 0}; {0; 2; 0}; {0; 0; 3}})`
76+
`DET({{sin(atn(1)*2); 0; 0}; {0; 2; 0}; {0; 0; 3}})`
7777

7878
If the user needs to evaluate a function that accepts more than one argument, including more than one array, all arrays arguments must be passed surrounded by parentheses "({...})". For example, a function call that emulates the SQL IN statement using an array argument and a reference value can be written as follows.
7979

0 commit comments

Comments
 (0)