Skip to content

Commit 837e341

Browse files
0.6.4 help files
1 parent 206daf2 commit 837e341

21 files changed

Lines changed: 1797 additions & 1512 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.3.0
3+
### Nelson 0.6.4.0
44

55
This is an pre-release of Nelson.
66

en/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,7 @@
522522
* [display](./display_format/display.md)
523523
* [echo](./display_format/echo.md)
524524
* [format](./display_format/format.md)
525+
* [formattedDisplayText](./display_format/formattedDisplayText.md)
525526

526527

527528
* [hdf5](./hdf5/README.md)

en/changelogs/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,38 @@ 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.4 (2022-04-24)
8+
9+
### Changed
10+
11+
- [#590](http://github.com/Nelson-numerical-software/nelson/issues/590): Nelson's license moved to LGPL v3.0 and GPL v3.0 and uses SPDX format.
12+
13+
- Nelson uses [Hack](https://sourcefoundry.org/hack/) font.
14+
15+
- Linux 64 bits and 32 bits uses same main script.
16+
17+
- [#594](http://github.com/Nelson-numerical-software/nelson/issues/594): `.pot` used to generate en_US.
18+
19+
### Added
20+
21+
- 'sscanf' reworked to manage unicode characters and speed optimization.
22+
23+
- French translations imported from Weblate (Thanks to contributors)
24+
25+
- Dark theme detected and applied on Linux, MacOS and Windows.
26+
27+
- [#559](http://github.com/Nelson-numerical-software/nelson/issues/559): `formattedDisplayText` function: Capture display output as string.
28+
29+
- Better detection Qt6 or Qt5 with CMake.
30+
31+
### Fixed
32+
33+
- Main Nelson's font was not applied on some OS platforms (ex: MacOS Catalina)
34+
35+
- [#622](http://github.com/Nelson-numerical-software/nelson/issues/622): `isreal(sqrt(i^4))` did not return true.
36+
37+
- Nelson's help indexing is faster (x100).
38+
739
## 0.6.3 (2022-03-26)
840

941
### Changed

en/display_format/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ output display format functions
1212
* [display](display.md) - Show information about variable or result of expression.
1313
* [echo](echo.md) - Controls the echoing during their execution.
1414
* [format](format.md) - Display format and number printing.
15+
* [formattedDisplayText](formattedDisplayText.md) - Capture display output as string.
1516

1617

1718

en/display_format/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
* [display](display.md)
44
* [echo](echo.md)
55
* [format](format.md)
6+
* [formattedDisplayText](formattedDisplayText.md)
67

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
2+
3+
# formattedDisplayText
4+
5+
Capture display output as string.
6+
7+
## Syntax
8+
9+
- str = formattedDisplayText(V)
10+
- str = formattedDisplayText(V, Name, Value)
11+
12+
## Input argument
13+
14+
- V - Variable to return as string
15+
- Name, Value - Name-Value Pair Arguments, Name: 'NumericFormat' or 'LineSpacing'.
16+
17+
## Output argument
18+
19+
- str - a string
20+
21+
## Description
22+
23+
24+
<p><b>str = formattedDisplayText(V)</b> returns the display output of <b>V</b> as a string.</p>
25+
<p>The string contains equivalent to <b>disp(V)</b>.</p>
26+
27+
28+
## Example
29+
30+
```matlab
31+
R = eye(3, 3)
32+
str = formattedDisplayText(R)
33+
R = rand(3, 3);
34+
disp(R)
35+
str = formattedDisplayText(R)
36+
str = formattedDisplayText(R, 'NumericFormat', 'bank', 'LineSpacing', 'compact')
37+
```
38+
39+
## See also
40+
41+
[display](display.md), [disp](disp.md), [format](format.md).
42+
## History
43+
44+
|Version|Description|
45+
|------|------|
46+
|1.0.0|initial version|
47+
48+
49+
## Author
50+
51+
Allan CORNET
52+
53+
54+

en/fftw/About_FFTW_license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ About FFTW license.
99

1010
<p>The FFTW library is no longer distributed as part of Nelson.</p>
1111
<p>Note that FFTW is licensed under GPLv2 or higher (see http://www.fftw.org/doc/License-and-Copyright.html), but the bindings
12-
to the library in this nelson's module, is licensed under LGPL2 v2.1.</p>
12+
to the library in this nelson's module, is licensed under LGPL v3.0.</p>
1313
<p>This means that code using the FFTW library via FFTW bindings is subject to FFTW's licensing terms.</p>
1414
<p>Code using alternative implementations of the FFTW API, such as
1515
MKL's FFTW3 interface (https://software.intel.com/en-us/mkl-developer-reference-c-fftw3-interface-to-intel-math-kernel-library)

en/files_folders_functions/relativepath.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Returns the relative path from an actual path to the target path.
2626
## Example
2727

2828
```matlab
29-
relativepath(nelsonroot(), [nelsonroot(), '/COPYING.LGPLv2.1'])
29+
relativepath(nelsonroot(), [nelsonroot(), '/lgpl-3.0.md'])
3030
relativepath(nelsonroot(), [nelsonroot(), '/etc/finish.m'])
31-
relativepath([nelsonroot(),'/bin'], [nelsonroot(), '/COPYING.LGPLv2.1'])
31+
relativepath([nelsonroot(),'/bin'], [nelsonroot(), '/lgpl-3.0.md'])
3232
relativepath('.', '.')
3333
relativepath('.', '..')
3434
relativepath('..', '.')

0 commit comments

Comments
 (0)