Skip to content

Commit fe495bf

Browse files
committedDec 14, 2024·
v1.10.0 help files
1 parent 984a123 commit fe495bf

Some content is hidden

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

70 files changed

+1606
-45
lines changed
 

‎en/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![banner](banner_homepage.png)
22

3-
### Nelson 1.9.0.0
3+
### Nelson 1.10.0.0
44

55
Nelson is a powerful, open-source numerical computational language, developed to provide a comprehensive and intuitive environment for engineers, scientists, and students. With over 1,200 built-in functions, Nelson supports a wide range of tasks, from basic algebra to advanced numerical simulations.
66

‎en/SUMMARY.md

+30-3
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
- [i18n](./i18n/README.md)
114114

115115
- [gettext](./i18n/gettext.md)
116+
- [i18nHelpers](./i18n/i18nHelpers.md)
116117
- [poheader](./i18n/poheader.md)
117118

118119
- [characters_encoding](./characters_encoding/README.md)
@@ -171,6 +172,7 @@
171172
- [double](./double/double.md)
172173
- [flintmax](./double/flintmax.md)
173174
- [realmax](./double/realmax.md)
175+
- [realmin](./double/realmin.md)
174176

175177
- [data_structures](./data_structures/README.md)
176178

@@ -185,6 +187,7 @@
185187
- [iscellstr](./data_structures/iscellstr.md)
186188
- [isfield](./data_structures/isfield.md)
187189
- [namedargs2cell](./data_structures/namedargs2cell.md)
190+
- [num2cell](./data_structures/num2cell.md)
188191
- [orderfields](./data_structures/orderfields.md)
189192
- [rmfield](./data_structures/rmfield.md)
190193
- [setfield](./data_structures/setfield.md)
@@ -212,6 +215,7 @@
212215

213216
- [Accessing and Manipulating Tables in Nelson](./table/1_accessing_manipulating_table.md)
214217
- [Direct computation with Table](./table/2_direct_compution_with_table.md)
218+
- [Read/Write table to files](./table/3_read_write_table.md)
215219
- [array2table](./table/array2table.md)
216220
- [cell2table](./table/cell2table.md)
217221
- [head](./table/head.md)
@@ -265,6 +269,7 @@
265269
- [isStringScalar](./string/isStringScalar.md)
266270
- [isletter](./string/isletter.md)
267271
- [isspace](./string/isspace.md)
272+
- [join](./string/join.md)
268273
- [mat2str](./string/mat2str.md)
269274
- [matches](./string/matches.md)
270275
- [newline](./string/newline.md)
@@ -430,6 +435,7 @@
430435
- [ismatrix](./elementary_functions/ismatrix.md)
431436
- [isnan](./elementary_functions/isnan.md)
432437
- [isrow](./elementary_functions/isrow.md)
438+
- [isscalar](./elementary_functions/isscalar.md)
433439
- [istril](./elementary_functions/istril.md)
434440
- [istriu](./elementary_functions/istriu.md)
435441
- [isvector](./elementary_functions/isvector.md)
@@ -730,8 +736,11 @@
730736
- [datevec](./time/datevec.md)
731737
- [eomday](./time/eomday.md)
732738
- [etime](./time/etime.md)
739+
- [hour](./time/hour.md)
733740
- [leapyear](./time/leapyear.md)
741+
- [minute](./time/minute.md)
734742
- [now](./time/now.md)
743+
- [second](./time/second.md)
735744
- [sleep](./time/sleep.md)
736745
- [tic](./time/tic.md)
737746
- [time](./time/time.md)
@@ -973,6 +982,7 @@
973982
- [validators](./validators/README.md)
974983

975984
- [mustBeA](./validators/mustBeA.md)
985+
- [mustBeColumn](./validators/mustBeColumn.md)
976986
- [mustBeFile](./validators/mustBeFile.md)
977987
- [mustBeFinite](./validators/mustBeFinite.md)
978988
- [mustBeFloat](./validators/mustBeFloat.md)
@@ -985,6 +995,7 @@
985995
- [mustBeLessThanOrEqual](./validators/mustBeLessThanOrEqual.md)
986996
- [mustBeLogical](./validators/mustBeLogical.md)
987997
- [mustBeLogicalScalar](./validators/mustBeLogicalScalar.md)
998+
- [mustBeMatrix](./validators/mustBeMatrix.md)
988999
- [mustBeMember](./validators/mustBeMember.md)
9891000
- [mustBeNegative](./validators/mustBeNegative.md)
9901001
- [mustBeNonNan](./validators/mustBeNonNan.md)
@@ -999,6 +1010,7 @@
9991010
- [mustBeNumericOrLogical](./validators/mustBeNumericOrLogical.md)
10001011
- [mustBePositive](./validators/mustBePositive.md)
10011012
- [mustBeReal](./validators/mustBeReal.md)
1013+
- [mustBeRow](./validators/mustBeRow.md)
10021014
- [mustBeScalarOrEmpty](./validators/mustBeScalarOrEmpty.md)
10031015
- [mustBeText](./validators/mustBeText.md)
10041016
- [mustBeTextScalar](./validators/mustBeTextScalar.md)
@@ -1017,7 +1029,6 @@
10171029
- [stream_manager](./stream_manager/README.md)
10181030

10191031
- [diary](./stream_manager/diary.md)
1020-
- [dlmwrite](./stream_manager/dlmwrite.md)
10211032
- [fclose](./stream_manager/fclose.md)
10221033
- [feof](./stream_manager/feof.md)
10231034
- [ferror](./stream_manager/ferror.md)
@@ -1125,6 +1136,8 @@
11251136
- [dlgenerateloader](./dynamic_link/dlgenerateloader.md)
11261137
- [dlgeneratemake](./dynamic_link/dlgeneratemake.md)
11271138
- [dlgenerateunloader](./dynamic_link/dlgenerateunloader.md)
1139+
- [dlgetnelsonincludes](./dynamic_link/dlgetnelsonincludes.md)
1140+
- [dlgetnelsonlibraries](./dynamic_link/dlgetnelsonlibraries.md)
11281141
- [dllib_used](./dynamic_link/dllib_used.md)
11291142
- [dllibinfo](./dynamic_link/dllibinfo.md)
11301143
- [dllibisloaded](./dynamic_link/dllibisloaded.md)
@@ -1143,7 +1156,7 @@
11431156
- [libpointer_reshape](./dynamic_link/libpointer_reshape.md)
11441157
- [libpointer_setdatatype](./dynamic_link/libpointer_setdatatype.md)
11451158
- [libpointer_used](./dynamic_link/libpointer_used.md)
1146-
- [loadcompilerconf](./dynamic_link/loadcompiler.md)
1159+
- [loadcompilerconf](./dynamic_link/loadcompilerconf.md)
11471160
- [removecompilerconf](./dynamic_link/removecompilerconf.md)
11481161
- [vswhere](./dynamic_link/vswhere.md)
11491162

@@ -1204,7 +1217,7 @@
12041217
- [COM_xlsfinfo](./com_engine/COM_xlsfinfo.md)
12051218
- [COM_xlsread](./com_engine/COM_xlsread.md)
12061219
- [COM_xlswrite](./com_engine/COM_xlswrite.md)
1207-
- [actxGetRunningSrv](./com_engine/actxGetRunningSrv.md)
1220+
- [actxGetRunningServer](./com_engine/actxGetRunningServer.md)
12081221
- [actxcontrollist](./com_engine/actxcontrollist.md)
12091222
- [actxserver](./com_engine/actxserver.md)
12101223
- [actxserverlist](./com_engine/actxserverlist.md)
@@ -1275,6 +1288,7 @@
12751288
- [zero](./control_system/zero.md)
12761289

12771290
- [python_engine](./python_engine/README.md)
1291+
12781292
- [The power of calling Python from Nelson](./python_engine/1_The_power_of_Python.md)
12791293
- [How to install python package](./python_engine/2_How_to_install_python_package.md)
12801294
- [Python Nelson types](./python_engine/3_python_types.md)
@@ -1283,3 +1297,16 @@
12831297
- [pyenv](./python_engine/pyenv.md)
12841298
- [pyrun](./python_engine/pyrun.md)
12851299
- [pyrunfile](./python_engine/pyrunfile.md)
1300+
1301+
- [spreadsheet](./spreadsheet/README.md)
1302+
- [csvread](./spreadsheet/csvread.md)
1303+
- [csvwrite](./spreadsheet/csvwrite.md)
1304+
- [detectImportOptions](./spreadsheet/detectImportOptions.md)
1305+
- [dlmread](./spreadsheet/dlmread.md)
1306+
- [dlmwrite](./spreadsheet/dlmwrite.md)
1307+
- [readcell](./spreadsheet/readcell.md)
1308+
- [readmatrix](./spreadsheet/readmatrix.md)
1309+
- [readtable](./spreadsheet/readtable.md)
1310+
- [writecell](./spreadsheet/writecell.md)
1311+
- [writematrix](./spreadsheet/writematrix.md)
1312+
- [writetable](./spreadsheet/writetable.md)

0 commit comments

Comments
 (0)