File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11![ banner] ( banner_homepage.png )
22
3- ### Nelson 0.2.10 .0
3+ ### Nelson 0.2.11 .0
44
55This is an pre-release of Nelson.
66
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 1+ * [ sio_client] ( README.md )
2+ * [ doc] ( doc.md )
3+ * [ sioemit] ( sioemit.md )
4+ * [ siogetvariable] ( siogetvariable.md )
5+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 11![ banner] ( banner_homepage.png )
22
3- ### Nelson 0.2.10 .0
3+ ### Nelson 0.2.11 .0
44
55Ceci est une version alpha de Nelson.
66
You can’t perform that action at this time.
0 commit comments