Skip to content

Commit 7f469bb

Browse files
help v0.6.6
1 parent 1493e4c commit 7f469bb

15 files changed

Lines changed: 320 additions & 4 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.6.5.0
3+
### Nelson 0.6.6.0
44

55
This is an pre-release of Nelson.
66

en/SUMMARY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,7 @@
483483
* [isdir](./files_folders_functions/isdir.md)
484484
* [isfile](./files_folders_functions/isfile.md)
485485
* [isfolder](./files_folders_functions/isfolder.md)
486+
* [ls](./files_folders_functions/ls.md)
486487
* [mkdir](./files_folders_functions/mkdir.md)
487488
* [pathsep](./files_folders_functions/pathsep.md)
488489
* [pwd](./files_folders_functions/pwd.md)
@@ -937,3 +938,9 @@
937938
* [polyval](./polynomial_functions/polyval.md)
938939
* [polyvalm](./polynomial_functions/polyvalm.md)
939940
* [roots](./polynomial_functions/roots.md)
941+
942+
943+
* [parallel](./parallel/README.md)
944+
* [backgroundPool](./parallel/backgroundPool.md)
945+
* [fetchOutputs](./parallel/fetchOutputs.md)
946+
* [parfeval](./parallel/parfeval.md)

en/changelogs/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,36 @@ 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.6 (2022-06-27)
8+
9+
### Added
10+
11+
- Parallel functions (part 1):
12+
13+
- `parfeval`: Run function on parallel background thread pool worker.
14+
- `backgroundPool`: Environment for running code in the background.
15+
- `fetchOutputs`: Retrieve results from function running in the background.
16+
17+
- [#666](http://github.com/Nelson-numerical-software/nelson/issues/666): `ls` function: List folder contents.
18+
19+
- [#655](http://github.com/Nelson-numerical-software/nelson/issues/655): help viewer embedded (available on all platforms).
20+
21+
### Changed
22+
23+
- LGTM replaced by CodeQL (Thanks to Github for their support)
24+
25+
- [#662](http://github.com/Nelson-numerical-software/nelson/issues/662): Snap uses Core22 and Qt6 (all dependencies are up-to-date).
26+
27+
- [#668](http://github.com/Nelson-numerical-software/nelson/issues/668): `maxNumCompThreads` detects numbers of physical cores on Windows.
28+
29+
- matrix of handles supported.
30+
31+
### Fixed
32+
33+
- [#659](http://github.com/Nelson-numerical-software/nelson/issues/659): qhelpgenerator on macOs after brew Qt6.3.0 update.
34+
35+
- [#661](http://github.com/Nelson-numerical-software/nelson/issues/661): CodeQL warnings.
36+
737
## 0.6.5 (2022-05-26)
838

939
### Added

en/core/maxNumCompThreads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Set/Get maximum number of computional threads.
2424

2525
<p><b>maxNumCompThreads</b> returns the number of threads used by Nelson for computations.</p>
2626
<p><b>maxNumCompThreads(T)</b> sets the maximum number of computational threads. This modification is only available for current session.</p>
27-
<p>By default, maxNumCompThreads uses OMP_NUM_THREADS environment variable or numbers of detected cores.</p>
27+
<p>By default, maxNumCompThreads uses OMP_NUM_THREADS environment variable or numbers of detected physical cores on Windows and logical cores on others platforms.</p>
2828

2929

3030
## Example

en/files_folders_functions/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ files, folders and paths functions
1919
* [isdir](isdir.md) - Returns true is the input argument is an directory.
2020
* [isfile](isfile.md) - Returns true is the input argument is a file.
2121
* [isfolder](isfolder.md) - Returns true is the input argument is an directory.
22+
* [ls](ls.md) - List folder contents.
2223
* [mkdir](mkdir.md) - Creates a new directory.
2324
* [pathsep](pathsep.md) - Return the search path separator character for the current platform.
2425
* [pwd](pwd.md) - Returns current directory.

en/files_folders_functions/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* [isdir](isdir.md)
1111
* [isfile](isfile.md)
1212
* [isfolder](isfolder.md)
13+
* [ls](ls.md)
1314
* [mkdir](mkdir.md)
1415
* [pathsep](pathsep.md)
1516
* [pwd](pwd.md)

en/files_folders_functions/dir.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ res = dir(nelsonroot(), '-s')
3838

3939
## See also
4040

41-
[isdir](isdir.md), [isfile](isfile.md).
41+
[ls](ls.md), [isdir](isdir.md), [isfile](isfile.md).
4242
## History
4343

4444
|Version|Description|

en/files_folders_functions/ls.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
2+
3+
# ls
4+
5+
List folder contents.
6+
7+
## Syntax
8+
9+
- ls
10+
- ls(name)
11+
- res = ls()
12+
- res = ls(options)
13+
14+
## Input argument
15+
16+
- name - a string: file or directory name.
17+
- options - vary from system to system.
18+
19+
## Output argument
20+
21+
- res - On Windows, res is an m-by-n character array of names. m is the number of names and n is the number of characters in the longest name. On Unix plaftorms is a character vector of names separated by tab and space characters.
22+
23+
## Description
24+
25+
26+
<p><b>ls</b> is implemented by calling the native operating system's directory listing command—available options will vary from system to system.</p>
27+
28+
29+
## Example
30+
31+
```matlab
32+
res = ls(nelsonroot())
33+
if ~ispc()
34+
res = ls(nelsonroot(), '-l')
35+
end
36+
```
37+
38+
## See also
39+
40+
[dir](dir.md), [isdir](isdir.md), [isfile](isfile.md).
41+
## History
42+
43+
|Version|Description|
44+
|------|------|
45+
|1.0.0|initial version|
46+
47+
48+
## Author
49+
50+
Allan CORNET
51+
52+
53+

en/parallel/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
3+
# parallel
4+
5+
parallel
6+
7+
## Description
8+
parallel functions
9+
10+
11+
* [backgroundPool](backgroundPool.md) - Environment for running nelson's code in the background.
12+
* [fetchOutputs](fetchOutputs.md) - Retrieve results from function running in the background pool.
13+
* [parfeval](parfeval.md) - Run function in background.
14+
15+
16+

en/parallel/SUMMARY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
* [parallel](README.md)
2+
* [backgroundPool](backgroundPool.md)
3+
* [fetchOutputs](fetchOutputs.md)
4+
* [parfeval](parfeval.md)
5+

0 commit comments

Comments
 (0)