New pages
From NEOSYS Dev Wiki
Jump to navigationJump to search
- 07:40, 24 March 2025 Functions (hist | edit) [533,495 bytes] Steve (talk | contribs) (Created page with " <html> <!DOCTYPE html> <html> <head> </head> <body> <!-- highlight.js for c++ syntax highlighting --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css"> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/cpp.min.js"></script> <!-- done below <script>hljs.highlightAll();</s...")
- 13:46, 22 March 2025 DimArrays (hist | edit) [8,274 bytes] Steve (talk | contribs) (Created page with " ==== Dim ==== {|class="wikitable" !Use!!Function!!Description |} ===== Dimensioned Array Construction ===== {|class="wikitable" !Use!!Function!!Description |- |||dim d1;||Create an dimensioned array of vars pending actual dimensions. |- |||dim d1(nrows, ncols = 1);||Create an array of vars with a fixed number of columns and rows. All vars are unassigned. |- |||dim d1 = d2; // Copy||Create a copy of an array. |- |||dim d1 = dim(); // Move||Save an array created el...")
- 13:42, 22 March 2025 ExodusPrograms (hist | edit) [24,010 bytes] Steve (talk | contribs) (Created page with " ==== Exodus Programs ==== ===== Select Lists ===== {|class="wikitable" !Use!!Function!!Description |- |if||select(sortselectclause_or_filehandle = "")||Create an active select list using a natural language sort/select command. This and all the following exoprog member functions work on an environment variable CURSOR. Identical functions are available directly on plain var objects but vars have less functionality regarding dictionaries and environment variables which...")
- 08:45, 30 January 2025 Functions wikifmt (hist | edit) [126,596 bytes] Steve (talk | contribs) (Created page with "==== Complete List of Functions ==== Generated by cli/gendoc from var.h at 29JAN2025 8:13PM ===== Math/Boolean ===== {|border="1" cellpadding="10" cellspacing="0" !Usage!!Function!!Comment |- |var=||num.<em>abs</em>()||Absolute value <syntaxhighlight lang="c++"> var(-12.34).abs(); // 12.34</syntaxhighlight> |- |var=||num.<em>pwr</em>(exponent)||Power <syntaxhighlight lang="c++"> var(2).pwr(8); // 256</syntaxhighlight> |- |var=||num.<em>rnd</em>()||Pseudo random numbe...") Tag: Visual edit: Switched originally created as "Functions"