Skip to content

Commit 4c2f435

Browse files
v1.15 help files
1 parent dcf2159 commit 4c2f435

4,863 files changed

Lines changed: 17 additions & 3560015 deletions

File tree

Some content is hidden

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

CONTROL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ bode(H,{1 10}, '-.')
1414

1515
![bode plot](https://github.com/nelson-lang/nelson-website/raw/master/images/bode.png "bode")
1616

17-
### [List of control system functions](https://nelson-lang.github.io/nelson-website/help/en_US/chapter_control_system.html)
17+
### [List of control system functions](https://nelson-lang.github.io/nelson-gitbook/releases/en_US/latest/index.html?open=./control_system/index.html)
1818

1919
[Previous page](FEATURES.md)

PLOTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Nelson provides graphics functions to visualize and export data:
44

5-
You will find all graphical functions documentation: [HERE](https://nelson-lang.github.io/nelson-website/help/en_US/chapter_graphics.html)
5+
You will find all graphical functions documentation: [HERE](https://nelson-lang.github.io/nelson-gitbook/releases/en_US/latest/index.html?open=./graphics/index.html)
66

77
Find more plots in [Plot Gallery](PLOT_GALLERY.md)
88

@@ -15,7 +15,7 @@ f = figure();
1515
t = linspace(0, 2 * pi,63);
1616
hold on
1717
plot(cos(t), sin(t), '^r')
18-
plot(cos(t), sin(2 * t), '-g', 'MarkerSize', 2);
18+
plot(cos(t), sin(2 * t), '-g', MarkerSize=2);
1919
axis equal
2020
legend(_('Circle'), _('Lissajous curve'))
2121
```

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Choose your platform and get started with Nelson today!
105105

106106
## 📖 **Documentation & Support**
107107

108-
- Explore the **[Online Documentation](https://nelson-lang.github.io/nelson-website/help/en_US/index.html)** for in-depth guides.
108+
- Explore the **[Online Documentation](https://nelson-lang.github.io/nelson-gitbook/releases/en_US/latest/index.html)** for in-depth guides.
109109
- Have questions or facing issues? **[Submit an Issue](https://github.com/nelson-lang/nelson/issues)**
110110

111111
---
@@ -125,13 +125,14 @@ Nelson is tested and supported on a wide range of platforms. **[Downloads](https
125125
| **Operating System** | **Architecture** | **CI** | **Binaries** |
126126
| :------------------: | :----------------: | :----: | :---------------: |
127127
| **Windows 10, 11** | x86-64 (\*1) |||
128+
| **macOS Tahoe** | arm64 || |
128129
| **macOS Sequoia** | arm64 || |
129130
| **macOS Sonoma** | arm64 || |
130-
| **macOS Ventura** | x86-64 (64-bit) || |
131+
| **macOS Sonoma** | x86-64 (64-bit) || |
131132
| **Ubuntu 24.04** | x86-64 || ✓ (Snap, Flatpak) |
132133
| **Ubuntu 24.04** | arm64 (cobalt 100) || ✓ (Snap, Flatpak) |
133134
| **Ubuntu 22.04** | x86-64 || ✓ (Snap, Flatpak) |
134-
| **Fedora 41** | x86-64 || ✓ (Snap, Flatpak) |
135+
| **Fedora 43** | x86-64 || ✓ (Snap, Flatpak) |
135136
| **ArchLinux** | x86-64 || ✓ (Snap, Flatpak) |
136137

137138
_Note: The continued support of some platforms may depend on community contributions._

TESTSENGINE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Tests engine
22

3-
Validate your algorithm using Nelson dedicated [functions](https://nelson-lang.github.io/nelson-website/help/en_US/chapter_assert_functions.html).
3+
Validate your algorithm using Nelson dedicated [functions](https://nelson-lang.github.io/nelson-gitbook/releases/en_US/latest/index.html?open=./assert_functions/index.html).
44

55
Since v0.5.4, tests are executed on multiple workers on all platforms supported (linux, mac and windows).
66
![alt text](https://github.com/nelson-lang/nelson-website/raw/master/images/test_run.png "test_run")

UICONTROL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Nelson provides graphics functions to visualize and export data:
44

5-
You will find uicontrol documentation: [HERE](https://nelson-lang.github.io/nelson-website/help/en_US/uicontrol.html)
5+
You will find uicontrol documentation: [HERE](https://nelson-lang.github.io/nelson-gitbook/releases/en_US/latest/index.html?open=./graphics/uicontrol.html)
66

77
### Example
88

@@ -14,10 +14,10 @@ Main .m file: (uicontrol_demo.m)
1414

1515
```matlab
1616
% Create a new figure window with specific properties
17-
fig = figure('Name', 'UIControl Demo', 'NumberTitle', 'off', 'Position', [300, 300, 600, 400]);
17+
fig = figure(Name='UIControl Demo', NumberTitle='off', Position=[300, 300, 600, 400]);
1818
1919
% Create an axes object within the figure for plotting
20-
ax = axes('Parent', fig, 'Position', [0.2, 0.4, 0.7, 0.5]);
20+
ax = axes(Parent=fig, Position=[0.2, 0.4, 0.7, 0.5]);
2121
2222
% Set the limits for the Y-axis of the plot
2323
ylim(ax, [-10, 10]);

VALIDATORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ r = myFunction([1 2], 2)
1919
r = myFunction(1, [3 2])
2020
```
2121

22-
See help about [validations function](https://nelson-lang.github.io/nelson-website/help/en_US/chapter_validators.html)
22+
See help about [validations function](https://nelson-lang.github.io/nelson-gitbook/releases/en_US/latest/index.html?open=./validators/index.html)
2323

2424
[Previous page](FEATURES.md)

help/en_US/1_COM_examples.html

Lines changed: 0 additions & 91 deletions
This file was deleted.

help/en_US/1_The_power_of_Python.html

Lines changed: 0 additions & 86 deletions
This file was deleted.

0 commit comments

Comments
 (0)