Skip to content

Commit a4f0ff5

Browse files
update help v0.2.19
1 parent 2ff278a commit a4f0ff5

45 files changed

Lines changed: 448 additions & 46 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

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.9.0
3+
### Nelson 0.2.10.0
44

55
This is an pre-release of Nelson.
66

en/SUMMARY.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
* [abort](./interpreter/abort.md)
1616
* [break](./interpreter/break.md)
1717
* [continue](./interpreter/continue.md)
18-
* [dbstack](./interpreter/dbstack.md)
1918
* [for](./interpreter/for.md)
2019
* [function](./interpreter/function.md)
2120
* [if](./interpreter/if.md)
@@ -69,6 +68,10 @@
6968
* [which](./functions_manager/which.md)
7069

7170

71+
* [debugger](./debugger/README.md)
72+
* [dbstack](./debugger/dbstack.md)
73+
74+
7275
* [error_manager](./error_manager/README.md)
7376
* [error](./error_manager/error.md)
7477
* [lasterror](./error_manager/lasterror.md)
@@ -128,6 +131,7 @@
128131
* [isequalto](./elementary_functions/isequalto.md)
129132
* [isfinite](./elementary_functions/isfinite.md)
130133
* [isinf](./elementary_functions/isinf.md)
134+
* [ismissing](./elementary_functions/ismissing.md)
131135
* [isnan](./elementary_functions/isnan.md)
132136
* [ldivide](./elementary_functions/ldivide.md)
133137
* [le](./elementary_functions/le.md)
@@ -202,6 +206,7 @@
202206
* [isreal](./types/isreal.md)
203207
* [issingle](./types/issingle.md)
204208
* [issparse](./types/issparse.md)
209+
* [isstring](./types/isstring.md)
205210
* [isstruct](./types/isstruct.md)
206211
* [isuint16](./types/isuint16.md)
207212
* [isuint32](./types/isuint32.md)
@@ -213,6 +218,7 @@
213218
* [char](./string/char.md)
214219
* [contains](./string/contains.md)
215220
* [count](./string/count.md)
221+
* [deblank](./string/deblank.md)
216222
* [endsWith](./string/endsWith.md)
217223
* [int2str](./string/int2str.md)
218224
* [mat2str](./string/mat2str.md)
@@ -224,6 +230,8 @@
224230
* [strcmp](./string/strcmp.md)
225231
* [strcmpi](./string/strcmpi.md)
226232
* [strfind](./string/strfind.md)
233+
* [string](./string/string.md)
234+
* [strings](./string/strings.md)
227235
* [strlength](./string/strlength.md)
228236
* [strncmp](./string/strncmp.md)
229237
* [strncmpi](./string/strncmpi.md)
@@ -275,6 +283,7 @@
275283
* [cell](./data_structures/cell.md)
276284
* [cell2struct](./data_structures/cell2struct.md)
277285
* [cellfun](./data_structures/cellfun.md)
286+
* [cellstr](./data_structures/cellstr.md)
278287
* [fieldnames](./data_structures/fieldnames.md)
279288
* [getfield](./data_structures/getfield.md)
280289
* [iscellstr](./data_structures/iscellstr.md)

en/data_structures/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ data structures functions
1111
* [cell](cell.md) - Create cell array of empty matrices.
1212
* [cell2struct](cell2struct.md) - Creates a struct from a cell.
1313
* [cellfun](cellfun.md) - Evaluates an function on a cell.
14+
* [cellstr](cellstr.md) - Converts to cell of character array.
1415
* [fieldnames](fieldnames.md) - Returns field names of a structure or an handle.
1516
* [getfield](getfield.md) - Returns value of a field in a struct.
1617
* [iscellstr](iscellstr.md) - Returns if a variable is a cell of strings.

en/data_structures/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* [cell](cell.md)
33
* [cell2struct](cell2struct.md)
44
* [cellfun](cellfun.md)
5+
* [cellstr](cellstr.md)
56
* [fieldnames](fieldnames.md)
67
* [getfield](getfield.md)
78
* [iscellstr](iscellstr.md)

en/data_structures/cell.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@ Create cell array of empty matrices.
1111
- C = cell(m, n)
1212
- C = cell(m, n, ... , p)
1313
- C = cell(sz)
14+
- C = cell(A)
1415

1516
## Input argument
1617

1718
- m, n, ... , p - dimensions of the cell to create.
1819
- sz - a vector of integer values (dimensions of the cell to create).
20+
- A - a string array.
1921

2022
## Output argument
2123

@@ -26,15 +28,20 @@ Create cell array of empty matrices.
2628

2729
<p><b>cell</b> returns a cell array of empty matrices.</p>
2830
<p><b>cell()</b> is equivalent to <b>cell(0)</b></p>
31+
<p><b>cell(A)</b> with A a string array converts to cell.</p>
2932

3033

31-
## Example
34+
## Examples
3235

3336
```matlab
3437
A = eye(2, 4);
3538
sz = size(A)
3639
C = cell(sz)
3740
```
41+
```matlab
42+
A = ["Nel", "son"; "open", "source"];
43+
C = cell(A)
44+
```
3845

3946
## See also
4047

en/data_structures/cellstr.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
2+
3+
# cellstr
4+
5+
Converts to cell of character array.
6+
7+
## Syntax
8+
9+
- ce = cellstr(A)
10+
11+
## Input argument
12+
13+
- A - a string, a string array, cell of character array.
14+
15+
## Output argument
16+
17+
- ce - a cell of character array
18+
19+
## Description
20+
21+
22+
<p><b>cellstr(A)</b> converts to cell of character array.</p>
23+
24+
25+
## Examples
26+
27+
```matlab
28+
cellstr('Nelson')
29+
```
30+
```matlab
31+
cellstr({'Nelson'})
32+
```
33+
```matlab
34+
cellstr({})
35+
```
36+
37+
## See also
38+
39+
[iscellstr](iscellstr.html).
40+
## History
41+
42+
|Version|Description|
43+
|------|------|
44+
|1.0.0|initial version|
45+
46+
47+
## Author
48+
49+
Allan CORNET
50+
51+
52+

en/debugger/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
# debugger functions
4+
5+
debugger functions
6+
7+
## Description
8+
debugger functions
9+
10+
11+
* [dbstack](dbstack.md) - call stack.
12+
13+
14+

en/debugger/SUMMARY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* [debugger](README.md)
2+
* [dbstack](dbstack.md)
3+
File renamed without changes.

en/double/double.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ A = single(pi)
3232
B = double(A)
3333
B - A
3434
```
35+
```matlab
36+
A = ["3.134", "NaN"; "Inf", "-5"];
37+
B = double(A)
38+
```
3539

3640
## See also
3741

0 commit comments

Comments
 (0)