You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: chapters/convention.md
+11-12
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,9 @@ As we can see from the function type, the output can be specified by an optional
54
54
55
55
Most binary math functions in Owl are associated with a shorthand operator, such as `+`, `-`, `*`, and `/`. The impure versions also have their own operators. For example, corresponding to `Arr.(x + y)` which returns the result in a new ndarray, you can write `Arr.(x += y)` which adds up `x` and `y` and saves the result into `x`.
56
56
57
+
58
+
The table below shows alias of pure and impure binary math functions.
59
+
57
60
Function Name |Pure |Impure
58
61
-------------- |-------------- |--------------
59
62
add |`+` |`+=`
@@ -65,7 +68,6 @@ sub_scalar |`-$` |`-$=`
65
68
mul_scalar |`*$` |`*$=`
66
69
div_scalar |`/$` |`/$=`
67
70
68
-
: Alias of pure and impure binary math functions {#tbl:convention:pure}
69
71
70
72
71
73
## Ndarray vs. Scalar
@@ -155,6 +157,8 @@ As long as a module implements all the functions defined in the module signature
155
157
156
158
The operators have been included in each `Ndarray` and `Matrix` module. The following table summarises the operators currently implemented. In the table, both `x` and `y` represent either a matrix or an ndarray while `a` represents a scalar value.
157
159
160
+
The table below shows infix operators in ndarray and matrix modules.
: Infix operators in ndarray and matrix modules {#tbl:convention:infix}
216
219
217
220
218
221
There is a list of things worth your attention as below.
@@ -301,11 +304,9 @@ Operator | Example | Operation
301
304
`min2` | `min2 x y` | element-wise min
302
305
`max2` | `max2 x y` | element-wise max
303
306
304
-
: Operator extensions {#tbl:convention:ext}
307
+
You may have noticed, the operators ended with `$` (e.g., `+$`, `-$` ...) disappeared from the table, which is simply because we can add/sub/mul/div a scalar with a matrix directly and we do not need these operators any more. Similar for comparison operators, because we can use the same `>` operator to compare a matrix to another matrix, or compare a matrix to a scalar, we do not need `>$` any longer. Allowing inter-operation makes the operator table much shorter.
305
308
306
-
You may have noticed, the operators ended with `$` (e.g., `+$`, `-$` ...) disappeared from the table, which is simply because we can add/sub/mul/div a scalar with a matrix directly and we do not need these operators any more. Similar for comparison operators, because we can use the same `>` operator to compare a matrix to another matrix, or compare a matrix to a scalar, we do not need `>$` any longer. Allowing interoperation makes the operator table much shorter.
307
-
308
-
Currently, the operators in `Ext` only support interoperation on dense structures. Besides binary operators, `Ext` also implements most of the common math functions which can be applied to float numbers, complex numbers, matrices, and ndarray. These functions are:
309
+
Currently, the operators in `Ext` only support inter-operation on dense structures. Besides binary operators, `Ext` also implements most of the common math functions which can be applied to float numbers, complex numbers, matrices, and ndarray. These functions are:
@@ -347,8 +348,6 @@ These modules are simply the wrappers of the original modules in `Owl.Dense` mod
347
348
348
349
```
349
350
350
-
There are also corresponding `packing` and `unpacking` functions you can use, please read `owl_ext_types.ml <https://github.com/owlbarn/owl/blob/master/src/owl/ext/owl_ext_types.ml>`_ for more details.
351
-
352
351
Let's see some examples to understand how convenient it is to use `Ext` module.
To know more about the functions provided in each module, please read the corresponding interface file of `Generic` module. The `Generic` module contains the documentation.
{ width=90% #fig:introduction:example00}
380
+

381
381
382
382
Even though the extra call to `display_file` is not ideal, it is obvious that the tooling in OCaml ecosystem has been moving forward quickly. I believe we will soon have even better and more convenient tools for interactive data analytical applications.
383
383
@@ -405,6 +405,6 @@ For the time being, if you want to save that extra line to display a image in Ju
405
405
406
406
```
407
407
408
-
{ width=90% #fig:introduction:plot01 }
408
+

409
409
410
410
From the example above, you can see Owl users' experience can be significantly improved by using the notebook.
0 commit comments