Modules: Difference between revisions
Jump to navigation
Jump to search
Created page with "= Useful S-Lang modules = S-Lang modules are packages containing several functions. They have to be loaded before they can be used: isis> require("modulename"); Have a look..." |
|||
| (9 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
= Useful S-Lang modules = | == Useful S-Lang modules == | ||
S-Lang modules are packages containing several functions. They have to be loaded before they can be used: | S-Lang modules are packages containing several functions. They have to be loaded before they can be used: | ||
| Line 5: | Line 5: | ||
Have a look here http://www.jedsoft.org/slang/modules/ for a list of common modules. | Have a look here http://www.jedsoft.org/slang/modules/ for a list of common modules. | ||
Some modules you have to know: | Some modules you have to know: | ||
* [[Plotting_with_the_S-Lang_Xfig_module|xfig]] - plotting with XFig | |||
* [http://space.mit.edu/cxc/software/slang/modules/gsl/doc/html/slgsl.html gsl] - GNU scientific library | |||
* stats - several statistic functions and tests | |||
* rand - random number/distribution module | |||
* [[Profiling|profile]] - Run-time profiler: Analyses (nested) function run-times | |||
* [[Socket|socket]] - basic communication functions via TCP/IP | |||
[[Category:Isis / Slang]] | [[Category:Isis / Slang]] | ||
Latest revision as of 09:55, 12 April 2018
Useful S-Lang modules
S-Lang modules are packages containing several functions. They have to be loaded before they can be used:
isis> require("modulename");
Have a look here http://www.jedsoft.org/slang/modules/ for a list of common modules. Some modules you have to know: