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/algodiff.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1192,7 +1192,7 @@ let f y =
1192
1192
1193
1193
For this functions $f: \mathbf{R}^4 \rightarrow \mathbf{R}^4$, we can then find its Jacobian matrix. Suppose the given point of interest of where all four input variables equals one. Then we can use the `Algodiff.D.jacobian` function in this way.
1194
1194
1195
-
```text
1195
+
```ocaml
1196
1196
let y = Mat.ones 1 4
1197
1197
let result = jacobian f y
1198
1198
@@ -1208,7 +1208,7 @@ R3 0.53033 0.176777 0 0
1208
1208
1209
1209
Next, we find the eigenvalues of this jacobian matrix with the Linear Algebra module in Owl that we have introduced in previous chapter.
Copy file name to clipboardexpand all lines: chapters/convention.md
+30-53
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ For unary operators such as `Arr.sin x`, the situation is rather straightforward
46
46
47
47
For `Arr.add_ x y`, the question is where to store the final result when both inputs are ndarray. Let's look at the type of `Arr.add_` function.
48
48
49
-
```text
49
+
```ocaml
50
50
val Arr.add_ : ?out:Arr.arr -> Arr.arr -> Arr.arr -> unit
51
51
```
52
52
@@ -275,55 +275,32 @@ As you can see, the operators above do not allow interoperation on different num
275
275
276
276
Some people just like Pythonic way of working, `Owl.Ext` module is specifically designed for this purpose, to make prototyping faster and easier. Once you open the module, `Ext` immediately provides a set of operators to allow you to interoperate on different number types, as below. It automatically casts types for you if necessary.
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.
@@ -346,7 +323,7 @@ Note that `Ext` contains its own `Ext.Dense` module which further contains the f
346
323
347
324
These modules are simply the wrappers of the original modules in `Owl.Dense` module so they provide most of the APIs already implemented. The extra thing these wrapper modules does is to pack and unpack the raw number types for you automatically. However, you can certainly use the raw data types then use the constructors defined in `Owl_ext_types` to wrap them up by yourself. The constructors are defined as below.
348
325
349
-
```text
326
+
```ocaml
350
327
351
328
type ext_typ =
352
329
F of float
@@ -411,7 +388,7 @@ Before we finish this chapter, I want to point out the caveat. `Ext` tries to mi
411
388
412
389
In Owl, `Dense` module contains the modules of dense data structures. For example, `Dense.Matrix` supports the operations of dense matrices. Similarly, `Sparse` module contains the modules of sparse data structures.
413
390
414
-
```text
391
+
```ocaml
415
392
Dense.Ndarray;; (* dense ndarray *)
416
393
Dense.Matrix;; (* dense matrix *)
417
394
@@ -536,7 +513,7 @@ Mat.zeros 5 5;; (* same as Dense.Matrix.D.zeros 5 5 *)
536
513
537
514
More examples besides creation functions are as follows.
538
515
539
-
```text
516
+
```ocaml
540
517
Mat.load "data.mat";; (* same as Dense.Matrix.D.load "data.mat" *)
541
518
Mat.of_array 5 5 x;; (* same as Dense.Matrix.D.of_array 5 5 x *)
542
519
Mat.linspace 0. 9. 10;; (* same as Dense.Matrix.D.linspace 0. 9. 10 *)
@@ -562,7 +539,7 @@ As I mentioned before, there are four basic number types. You can therefore cast
562
539
563
540
In fact, all these function rely on the following `cast` function.
564
541
565
-
```text
542
+
```ocaml
566
543
567
544
val cast : ('a, 'b) kind -> ('c, 'd) t -> ('a, 'b) t
Copy file name to clipboardexpand all lines: chapters/dataframe.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,7 @@ However, if you just want to append one or two rows, the previous method seems a
145
145
There are also functions allow you to retrieve the properties, for example:
146
146
147
147
148
-
```text
148
+
```ocaml
149
149
150
150
val copy : t -> t (* return the copy of a dataframe. *)
151
151
@@ -204,7 +204,7 @@ R1 Carol 30
204
204
205
205
How can we miss the classic iteration functions in the functional programming? Dataframe includes the following methods to traverse the rows in a dataframe. We did not include any method to traverse columns because they can be simply extracted out as series then processed separately.
206
206
207
-
```text
207
+
```ocaml
208
208
209
209
val iteri_row : (int -> elt array -> unit) -> t -> unit
210
210
@@ -229,7 +229,7 @@ Applying these functions to a dataframe is rather straightforward. All the eleme
229
229
One interesting thing worth mentioning here is that there are several functions are associated with extended indexing operators. This allows us to write quite concise code in our application.
230
230
231
231
232
-
```text
232
+
```ocaml
233
233
234
234
val ( .%( ) ) : t -> int * string -> elt
235
235
(* associated with `get_by_name` *)
@@ -352,7 +352,7 @@ R2 Carol 3000.
352
352
CSV (Comma-Separated Values) is a common format to store tabular data. The module provides simple support to process CSV files. The two core functions are as follows.
353
353
354
354
355
-
```text
355
+
```ocaml
356
356
357
357
val of_csv : ?sep:char -> ?head:string array -> ?types:string array -> string -> t
Copy file name to clipboardexpand all lines: chapters/introduction.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -373,7 +373,7 @@ The Second example demonstrates how to plot figures in notebook. Because Owl's P
373
373
374
374
To load the image into browser, we need to call the `Jupyter_notebook.display_file` function. Then we can see the plot [@fig:introduction:example00] is correctly rendered in the notebook running in your browser. Plotting capability greatly enriches the content of an interactive presentation.
Copy file name to clipboardexpand all lines: chapters/ndarray.md
+18-18
Original file line number
Diff line number
Diff line change
@@ -201,7 +201,7 @@ The `map` function can be very useful in implementing vectorised math functions.
201
201
202
202
If you need indices in the transformation function, you can use the `mapi` function which accepts the 1-d index of the element being accessed.
203
203
204
-
```text
204
+
```ocaml
205
205
206
206
val mapi : (int -> 'a -> 'a) -> ('a, 'b) t -> ('a, 'b) t
207
207
@@ -212,7 +212,7 @@ If you need indices in the transformation function, you can use the `mapi` funct
212
212
213
213
The `fold` function is often referred to as "reduction" in other programming languages. It has a named parameter called `axis`, with which you can specify along what axis you want to fold a given ndarray.
214
214
215
-
```text
215
+
```ocaml
216
216
217
217
val fold : ?axis:int -> ('a -> 'a -> 'a) -> 'a -> ('a, 'b) t -> ('a, 'b) t
218
218
@@ -231,7 +231,7 @@ The functions `sum`, `sum'`, `prod`, `prod'`, `min`, `min'`, `mean`, and `mean'`
231
231
232
232
Similarly, if you need indices in folding function, you can use `foldi` which passes in 1-d indices.
233
233
234
-
```text
234
+
```ocaml
235
235
236
236
val foldi : ?axis:int -> (int -> 'a -> 'a -> 'a) -> 'a -> ('a, 'b) t -> ('a, 'b) t
237
237
@@ -243,7 +243,7 @@ Similarly, if you need indices in folding function, you can use `foldi` which pa
243
243
To some extent, the `scan` function is like the combination of `map` and `fold`. It accumulates the value along the specified axis but it does not change the shape of the input. Think about how we generate a cumulative distribution function (CDF) from a probability density/mass function (PDF/PMF).
244
244
The type signature of `scan` looks like this in Ndarray.
245
245
246
-
```text
246
+
```ocaml
247
247
248
248
val scan : ?axis:int -> ('a -> 'a -> 'a) -> ('a, 'b) t -> ('a, 'b) t
249
249
@@ -263,7 +263,7 @@ Again, you can use the `scani` to obtain the indices in the passed in cumulative
263
263
264
264
The comparison functions themselves can be divided into several groups. The first group compares two ndarrays then returns a boolean value.
265
265
266
-
```text
266
+
```ocaml
267
267
268
268
val equal : ('a, 'b) t -> ('a, 'b) t -> bool
269
269
@@ -278,7 +278,7 @@ The comparison functions themselves can be divided into several groups. The firs
278
278
279
279
The second group compares two ndarrays but returns an 0-1 ndarray of the same shape. The elements where the predicate is satisfied have value 1 otherwise 0.
280
280
281
-
```text
281
+
```ocaml
282
282
283
283
val elt_equal : ('a, 'b) t -> ('a, 'b) t -> ('a, 'b) t
284
284
@@ -294,7 +294,7 @@ The second group compares two ndarrays but returns an 0-1 ndarray of the same sh
294
294
295
295
The third group is similar to the first one but compares an ndarray with a scalar value, the return is a Boolean value.
296
296
297
-
```text
297
+
```ocaml
298
298
299
299
val equal_scalar : ('a, 'b) t -> 'a -> bool
300
300
@@ -310,7 +310,7 @@ The third group is similar to the first one but compares an ndarray with a scala
310
310
311
311
The fourth group is similar to the second one but compares an ndarray with a scalar value, and the returned value is a 0-1 ndarray.
312
312
313
-
```text
313
+
```ocaml
314
314
315
315
val elt_equal_scalar : ('a, 'b) t -> 'a -> ('a, 'b) t
316
316
@@ -358,7 +358,7 @@ Conceptually, Owl can implement all these functions using the aforementioned `ma
358
358
359
359
Like native OCaml array, Owl also provides `iter` and `iteri` functions with which you can iterate over all the elements in an ndarray.
360
360
361
-
```text
361
+
```ocaml
362
362
363
363
val iteri :(int -> 'a -> unit) -> ('a, 'b) t -> unit
364
364
@@ -369,7 +369,7 @@ Like native OCaml array, Owl also provides `iter` and `iteri` functions with whi
369
369
One common use case is iterating all the elements and checking if one (or several) predicate is satisfied.
370
370
There is a special set of iteration functions to help you finish this task.
371
371
372
-
```text
372
+
```ocaml
373
373
374
374
val is_zero : ('a, 'b) t -> bool
375
375
@@ -387,7 +387,7 @@ There is a special set of iteration functions to help you finish this task.
387
387
388
388
The predicates can be very complicated sometimes. In that case you can use the following three functions to pass in arbitrarily complicated functions to check them.
389
389
390
-
```text
390
+
```ocaml
391
391
392
392
val exists : ('a -> bool) -> ('a, 'b) t -> bool
393
393
@@ -399,7 +399,7 @@ The predicates can be very complicated sometimes. In that case you can use the f
399
399
400
400
All aforementioned functions only tell us whether the predicates are met or not. They cannot tell which elements satisfy the predicate. The following `filter` function can return the 1-d indices of those elements satisfying the predicates.
401
401
402
-
```text
402
+
```ocaml
403
403
404
404
val filteri : (int -> 'a -> bool) -> ('a, 'b) t -> int array
405
405
@@ -409,7 +409,7 @@ All aforementioned functions only tell us whether the predicates are met or not.
409
409
410
410
We have mentioned that 1-d indices are passed in. The reason is passing in 1-d indices is way faster than passing in n-d indices. However, if you do need n-dimensional indices, you can use the following two functions to convert between 1-d and 2-d indices, both are defined in the `Owl.Utils` module.
411
411
412
-
```text
412
+
```ocaml
413
413
414
414
val ind : ('a, 'b) t -> int -> int array
415
415
(* 1-d to n-d index conversion *)
@@ -473,7 +473,7 @@ R5 8 9 10 11
473
473
474
474
You can also expand the dimensionality of an ndarray, or squeeze out those dimensions having only one element, or even padding elements to an existing ndarray.
475
475
476
-
```text
476
+
```ocaml
477
477
478
478
val expand : ('a, 'b) t -> int -> ('a, 'b) t
479
479
@@ -488,7 +488,7 @@ The `concatenate` allows us to concatenate an array of ndarrays along the specif
488
488
For matrices, there are two operators associated with concatenation: `@||` for concatenating horizontally (i.e. along axis 1); `@=` for concatenating vertically (i.e. along axis 0).
489
489
The `split` is simply the inverse operation of concatenation.
490
490
491
-
```text
491
+
```ocaml
492
492
493
493
val concatenate : ?axis:int -> ('a, 'b) t array -> ('a, 'b) t
494
494
@@ -498,15 +498,15 @@ The `split` is simply the inverse operation of concatenation.
498
498
499
499
You can also sort an ndarray but note that modification will happen in place.
500
500
501
-
```text
501
+
```ocaml
502
502
503
503
val sort : ('a, 'b) t -> unit
504
504
505
505
```
506
506
507
507
Converting between ndarrays and OCaml native arrays can be efficiently done with these conversion functions:
508
508
509
-
```text
509
+
```ocaml
510
510
511
511
val of_array : ('a, 'b) kind -> 'a array -> int array -> ('a, 'b) t
512
512
@@ -521,7 +521,7 @@ Again, there also exist the `to_arrays` and `of_arrays` two functions for the sp
521
521
522
522
Serialisation and de-serialisation are simply done with the `save` and `load` functions.
0 commit comments