Skip to content

Commit 0410192

Browse files
v0.6.7 help files
1 parent 7f469bb commit 0410192

50 files changed

Lines changed: 265 additions & 42 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.6.6.0
3+
### Nelson 0.6.7.0
44

55
This is an pre-release of Nelson.
66

en/SUMMARY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -942,5 +942,8 @@
942942

943943
* [parallel](./parallel/README.md)
944944
* [backgroundPool](./parallel/backgroundPool.md)
945+
* [cancel](./parallel/cancel.md)
946+
* [cancelAll](./parallel/cancelAll.md)
945947
* [fetchOutputs](./parallel/fetchOutputs.md)
946948
* [parfeval](./parallel/parfeval.md)
949+
* [wait](./parallel/wait.md)

en/changelogs/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## 0.6.7 (2022-07-27)
8+
9+
### Added
10+
11+
- `str2func` manages anonymous function.
12+
13+
- Parallel functions (part 2):
14+
15+
- `cancelAll`: Stop all functions running in the background.
16+
- `cancel`: Stop function running in the background.
17+
- `wait`: Wait for futures to be completed.
18+
- `Diary` property for `FevalFuture` object.
19+
20+
- CITATION.cff with human- and machine-readable citation information for software.
21+
22+
### Changed
23+
24+
- localization files `.pot`, `.po` updated.
25+
26+
### Fixed
27+
28+
- [#679](http://github.com/Nelson-numerical-software/nelson/issues/679): uniformize path for includes and libraries.
29+
730
## 0.6.6 (2022-06-27)
831

932
### Added
@@ -28,6 +51,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
2851

2952
- matrix of handles supported.
3053

54+
- [#676](http://github.com/Nelson-numerical-software/nelson/issues/676): use fmtlib 9.0
55+
3156
### Fixed
3257

3358
- [#659](http://github.com/Nelson-numerical-software/nelson/issues/659): qhelpgenerator on macOs after brew Qt6.3.0 update.

en/function_handle/str2func.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,20 @@ Returns a function handle from a string.
2020

2121

2222
<p><b>function_handle = str2func(str)</b> returns a function handle <b>function_handle</b> for the function named in the string <b>str</b></p>
23+
<p><b>str</b> function name or representation of anonymous function.</p>
2324

2425

25-
## Example
26+
## Examples
2627

2728
```matlab
2829
fh = str2func('cos')
2930
str = func2str(fh)
3031
```
32+
```matlab
33+
myFind = str2func('@(x, y) find(x > y)')
34+
M = rand(4, 3, 5);
35+
[R, C] = myFind(M, 0.9)
36+
```
3137

3238
## See also
3339

en/graphics/figure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ gcf()
4848

4949
## See also
5050

51-
[gcf](gcf.md).
51+
[gcf](gcf.html).
5252
## History
5353

5454
|Version|Description|

en/graphics/gcf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ gcf()
3030

3131
## See also
3232

33-
[figure](figure.md).
33+
[figure](figure.html).
3434
## History
3535

3636
|Version|Description|

en/graphics/groot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ g.ScreenDepth
3737

3838
## See also
3939

40-
[figure](figure.md), [gcf](gcf.md).
40+
[figure](figure.html), [gcf](gcf.html).
4141
## History
4242

4343
|Version|Description|

en/gui/errordlg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ h = errordlg('error string', 'dialog title', 'on')
4949

5050
## See also
5151

52-
[warndlg](warndlg.md), [questdlg](questdlg.md), [helpdlg](helpdlg.md), [msgbox](msgbox.md).
52+
[warndlg](warndlg.html), [questdlg](questdlg.html), [helpdlg](helpdlg.html), [msgbox](msgbox.html).
5353
## History
5454

5555
|Version|Description|

en/gui/helpdlg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ h = helpdlg('help string', 'dialog title', 'on')
4545

4646
## See also
4747

48-
[warndlg](warndlg.md), [errordlg](errordlg.md), [questdlg](questdlg.md), [msgbox](msgbox.md).
48+
[warndlg](warndlg.html), [errordlg](errordlg.html), [questdlg](questdlg.html), [msgbox](msgbox.html).
4949
## History
5050

5151
|Version|Description|

en/gui/msgbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ h = msgbox('help string', 'dialog title', 'on')
4646

4747
## See also
4848

49-
[helpdlg](helpdlg.md), [errordlg](errordlg.md), [questdlg](questdlg.md), [warndlg](warndlg.md).
49+
[helpdlg](helpdlg.html), [errordlg](errordlg.html), [questdlg](questdlg.html), [warndlg](warndlg.html).
5050
## History
5151

5252
|Version|Description|

0 commit comments

Comments
 (0)