Skip to content

Commit ab4c2d2

Browse files
v0.2.11 update
1 parent a4f0ff5 commit ab4c2d2

8 files changed

Lines changed: 157 additions & 2 deletions

File tree

en/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![banner](banner_homepage.png)
22

3-
### Nelson 0.2.10.0
3+
### Nelson 0.2.11.0
44

55
This is an pre-release of Nelson.
66

en/SUMMARY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -673,3 +673,9 @@
673673
* [resume](./audio/resume.md)
674674
* [stop](./audio/stop.md)
675675

676+
677+
* [sio_client](./sio_client/README.md)
678+
* [doc](./sio_client/doc.md)
679+
* [sioemit](./sio_client/sioemit.md)
680+
* [siogetvariable](./sio_client/siogetvariable.md)
681+

en/sio_client/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
3+
# sio client
4+
5+
sio client
6+
7+
## Description
8+
Nelson in the cloud
9+
10+
11+
* [doc](doc.md) - Displays documentation.
12+
* [sioemit](sioemit.md) - Emit an event to web client.
13+
* [siogetvariable](siogetvariable.md) - Emit an value of variable to web browser.
14+
15+
16+

en/sio_client/SUMMARY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
* [sio_client](README.md)
2+
* [doc](doc.md)
3+
* [sioemit](sioemit.md)
4+
* [siogetvariable](siogetvariable.md)
5+

en/sio_client/doc.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
2+
3+
# doc
4+
5+
Displays documentation.
6+
7+
## Syntax
8+
9+
- doc
10+
- doc function_name
11+
- doc('function_name')
12+
13+
## Input argument
14+
15+
- function_name - a string: function name
16+
17+
## Description
18+
19+
20+
<p><b>doc</b>launches web browser.</p>
21+
<p><b>doc('function_name')</b>displays the help about function designed by 'function_name'.</p>
22+
23+
24+
## Examples
25+
26+
```matlab
27+
doc()
28+
```
29+
```matlab
30+
doc sin
31+
```
32+
```matlab
33+
doc is
34+
```
35+
36+
## History
37+
38+
|Version|Description|
39+
|------|------|
40+
|1.0.0|initial version|
41+
42+
43+
## Author
44+
45+
Allan CORNET
46+
47+
48+

en/sio_client/sioemit.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
3+
# sioemit
4+
5+
Emit an event to web client.
6+
7+
## Syntax
8+
9+
- sioemit(name, message)
10+
- sioemit(name)
11+
12+
## Input argument
13+
14+
- name - a string: event name
15+
- message - a string: message to emit
16+
17+
## Description
18+
19+
20+
<p><b>sioemit</b> emits an event to client.</p>
21+
22+
23+
## Example
24+
25+
```matlab
26+
sioemit('event_demo', jsonencode(eye(3,3)))
27+
```
28+
29+
## History
30+
31+
|Version|Description|
32+
|------|------|
33+
|1.0.0|initial version|
34+
35+
36+
## Author
37+
38+
Allan CORNET
39+
40+
41+

en/sio_client/siogetvariable.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
3+
# siogetvariable
4+
5+
Emit an value of variable to web browser.
6+
7+
## Syntax
8+
9+
- siogetvariable(variable_name)
10+
11+
## Input argument
12+
13+
- variable_name - a string: name of variable
14+
15+
## Description
16+
17+
18+
<p><b>siogetvariable</b> send value of a variable to web browser.</p>
19+
20+
21+
## Example
22+
23+
```matlab
24+
A = eye(3, 3); siogetvariable('A')
25+
```
26+
27+
## History
28+
29+
|Version|Description|
30+
|------|------|
31+
|1.0.0|initial version|
32+
33+
34+
## Author
35+
36+
Allan CORNET
37+
38+
39+

fr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![banner](banner_homepage.png)
22

3-
### Nelson 0.2.10.0
3+
### Nelson 0.2.11.0
44

55
Ceci est une version alpha de Nelson.
66

0 commit comments

Comments
 (0)