Skip to content

Commit ebecb65

Browse files
committed
Merged article updates by Joe7M
1 parent 4a0fbea commit ebecb65

File tree

162 files changed

+2806
-2113
lines changed

Some content is hidden

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

162 files changed

+2806
-2113
lines changed

_build/pages/android_changelog.markdown

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ Android Changelog
55
[Home](/) > [Articles](/pages/articles.html)
66
:::
77

8+
**12.25 (23 December 2022)**
9+
10+
- Implemented a new web service for managing files via desktop browser
11+
- Fixed a problem with TRIM which broke the TinyBASIC.bas sample
12+
- Fixed RECT FILLED when the coordinates are inverted
13+
- Fixed SPLIT command - empty input now gives zero length output
14+
- Fixed display of floating point numbers with high precision
15+
- Fixed functions Polyarea, Polycent
16+
- Fixed crash with INPUT command while scrolled #160
17+
- Updated CHART line drawing to use current foreground color
18+
- Added link from About screen to privacy page
19+
820
**12.23 (31 August 2021)**
921

1022
- Fix array append regression #122

pages/android_changelog.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,18 @@ <h1 id="android-changelog">Android Changelog</h1>
6868
<div class="siteSub">
6969
<p><a href="/">Home</a> &gt; <a href="/pages/articles.html">Articles</a></p>
7070
</div>
71+
<p><strong>12.25 (23 December 2022)</strong></p>
72+
<ul>
73+
<li>Implemented a new web service for managing files via desktop browser</li>
74+
<li>Fixed a problem with TRIM which broke the TinyBASIC.bas sample</li>
75+
<li>Fixed RECT FILLED when the coordinates are inverted</li>
76+
<li>Fixed SPLIT command - empty input now gives zero length output</li>
77+
<li>Fixed display of floating point numbers with high precision</li>
78+
<li>Fixed functions Polyarea, Polycent</li>
79+
<li>Fixed crash with INPUT command while scrolled #160</li>
80+
<li>Updated CHART line drawing to use current foreground color</li>
81+
<li>Added link from About screen to privacy page</li>
82+
</ul>
7183
<p><strong>12.23 (31 August 2021)</strong></p>
7284
<ul>
7385
<li>Fix array append regression #122</li>

pages/escape.html

Lines changed: 57 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,14 @@ <h4>SmallBASIC</h4>
6565
</div>
6666
<div class="article">
6767
<h1 id="escape-codes">Escape codes</h1>
68-
<p>SmallBASIC supports a number of escape codes for controlling the display. The codes allow you to set foreground and background colors, change the font and also set underline and inverse text display.</p>
69-
<p>The escape codes are based on <a href="http://en.wikipedia.org/wiki/ANSI_escape_code">ANSI Codes</a>. SmallBASIC also support a number of additional codes which are not part of the standard.</p>
70-
<p>Escape sequences start with the characters ESC (ASCII 27d / 1Bh / 033o ) and [ (left bracket). This sequence is called CSI for “Control Sequence Introducer”.</p>
71-
<p>The supported standard codes are:</p>
68+
<p>SmallBASIC supports a number of escape codes for controlling the display. The codes allow you to set foreground and background colors, change the font and also set underline and inverse text display. The escape codes are based on <a href="http://en.wikipedia.org/wiki/ANSI_escape_code">ANSI Codes</a>.</p>
69+
<h2 id="the-supported-standard-codes-are">The supported standard codes are:</h2>
7270
<pre><code> \a beep
7371
\t tab (20 px)
7472
\r return
7573
\n next line
76-
\xC clear screen (new page)
74+
\&quot; quote &quot;
75+
\\ Backslash \
7776
\e[K clear to end of line
7877
\e[nG move to column n
7978
\e[s save cursor position
@@ -88,21 +87,61 @@ <h1 id="escape-codes">Escape codes</h1>
8887
\e[24m set underline off
8988
\e[27m set reverse off
9089
\e[nm n colors - 30..37 foreground, 40..47 background</code></pre>
91-
<p>Useful non-standard codes include:</p>
92-
<pre><code> \003 end of text (flush buffer)
93-
\m scroll to the top
94-
\&lt;1 select backscreen 1
95-
\&lt;2 select backscreen 2
96-
\&gt;1 select frontscreen 1
97-
\&lt;2 select frontscreen 2</code></pre>
98-
<p>The CHR command is useful for obtaining and printing the escape character (ASCII 27)</p>
99-
<p>For example:</p>
100-
<pre><code>10 PRINT CHR(27) + &quot;[1mTHIS IS BOLD&quot; + CHR(27) + &quot;[0m&quot;
101-
20 PRINT CHR(27) + &quot;[3mThis is italic&quot; + CHR(27) + &quot;[0m&quot;
102-
30 PRINT CHR(27) + &quot;[4mThis is underline&quot;</code></pre>
90+
<h2 id="using-the-escape-codes-directly">Using the escape codes directly</h2>
91+
<p>The instead of “” the CHR command is useful for obtaining and printing the escape character (ASCII 27)</p>
92+
<pre class="freebasic"><code>PRINT CHR(27) + &quot;[1mTHIS IS BOLD&quot; + CHR(27) + &quot;[0m&quot;
93+
PRINT CHR(27) + &quot;[3mThis is italic&quot; + CHR(27) + &quot;[0m&quot;
94+
PRINT CHR(27) + &quot;[4mThis is underline&quot;
95+
96+
PRINT &quot;\e[32mGreen text&quot;
97+
PRINT &quot;\e[32m\e[47mGreen text on white background&quot;
98+
PRINT &quot;First line\nSecond Line&quot;</code></pre>
99+
<h2 id="using-the-escapecode-unit">Using the EscapeCode Unit</h2>
100+
<p>The EscapeCode Unit makes it easier to use the escape codes and to deal with the different colors for foreground and background. The uint can be downloaded or copy pasted from the <a href="https://github.com/smallbasic/smallbasic.plugins/blob/master/units/EscapeCodes.bas">SmallBASIC Github website</a>. Please save the unit in the same directory as you basic file.</p>
101+
<p>Here an example on how to use the unit.</p>
102+
<pre class="freebasic"><code>&#39; SmallBASIC 12.25
103+
&#39; Example for using UNIT &quot;EscapeCodes&quot;
104+
&#39; For more information see: https://smallbasic.github.io/pages/escape.html
105+
106+
import EscapeCodes as esc
107+
108+
print &quot;FORMATING TEXT:&quot;
109+
print
110+
print esc.NORMAL + &quot;WITHOUT ANY FORMAT &quot; + esc.ITALIC + &quot;ITALIC &quot; + esc.ITALIC_OFF + esc.BOLD + &quot;BOLD &quot; + esc.BOLD_OFF + esc.UNDERLINE + &quot;UNDERLINE &quot; + esc.UNDERLINE_OFF + esc.REVERSE + &quot;REVERSE&quot; + esc.REVERSE_OFF
111+
print
112+
print &quot;USE COLORS:&quot;
113+
print
114+
print esc.BG_BLACK + esc.BLACK + &quot; BLACK &quot; + esc.RED + &quot; RED &quot; + esc.GREEN + &quot; GREEN &quot; + esc.YELLOW + &quot; YELLOW &quot; + esc.BLUE + &quot; BLUE &quot; + esc.MAGENTA + &quot; MAGENTA &quot; + esc.CYAN + &quot; CYAN &quot; + esc.WHITE + &quot; WHITE &quot; + esc.NORMAL
115+
print esc.BG_RED + esc.BLACK + &quot; BLACK &quot; + esc.RED + &quot; RED &quot; + esc.GREEN + &quot; GREEN &quot; + esc.YELLOW + &quot; YELLOW &quot; + esc.BLUE + &quot; BLUE &quot; + esc.MAGENTA + &quot; MAGENTA &quot; + esc.CYAN + &quot; CYAN &quot; + esc.WHITE + &quot; WHITE &quot; + esc.NORMAL
116+
print esc.BG_GREEN + esc.BLACK + &quot; BLACK &quot; + esc.RED + &quot; RED &quot; + esc.GREEN + &quot; GREEN &quot; + esc.YELLOW + &quot; YELLOW &quot; + esc.BLUE + &quot; BLUE &quot; + esc.MAGENTA + &quot; MAGENTA &quot; + esc.CYAN + &quot; CYAN &quot; + esc.WHITE + &quot; WHITE &quot; + esc.NORMAL
117+
print esc.BG_YELLOW + esc.BLACK + &quot; BLACK &quot; + esc.RED + &quot; RED &quot; + esc.GREEN + &quot; GREEN &quot; + esc.YELLOW + &quot; YELLOW &quot; + esc.BLUE + &quot; BLUE &quot; + esc.MAGENTA + &quot; MAGENTA &quot; + esc.CYAN + &quot; CYAN &quot; + esc.WHITE + &quot; WHITE &quot; + esc.NORMAL
118+
print esc.BG_BLUE + esc.BLACK + &quot; BLACK &quot; + esc.RED + &quot; RED &quot; + esc.GREEN + &quot; GREEN &quot; + esc.YELLOW + &quot; YELLOW &quot; + esc.BLUE + &quot; BLUE &quot; + esc.MAGENTA + &quot; MAGENTA &quot; + esc.CYAN + &quot; CYAN &quot; + esc.WHITE + &quot; WHITE &quot; + esc.NORMAL
119+
print esc.BG_MAGENTA + esc.BLACK + &quot; BLACK &quot; + esc.RED + &quot; RED &quot; + esc.GREEN + &quot; GREEN &quot; + esc.YELLOW + &quot; YELLOW &quot; + esc.BLUE + &quot; BLUE &quot; + esc.MAGENTA + &quot; MAGENTA &quot; + esc.CYAN + &quot; CYAN &quot; + esc.WHITE + &quot; WHITE &quot; + esc.NORMAL
120+
print esc.BG_CYAN + esc.BLACK + &quot; BLACK &quot; + esc.RED + &quot; RED &quot; + esc.GREEN + &quot; GREEN &quot; + esc.YELLOW + &quot; YELLOW &quot; + esc.BLUE + &quot; BLUE &quot; + esc.MAGENTA + &quot; MAGENTA &quot; + esc.CYAN + &quot; CYAN &quot; + esc.WHITE + &quot; WHITE &quot; + esc.NORMAL
121+
print esc.BG_WHITE + esc.BLACK + &quot; BLACK &quot; + esc.RED + &quot; RED &quot; + esc.GREEN + &quot; GREEN &quot; + esc.YELLOW + &quot; YELLOW &quot; + esc.BLUE + &quot; BLUE &quot; + esc.MAGENTA + &quot; MAGENTA &quot; + esc.CYAN + &quot; CYAN &quot; + esc.WHITE + &quot; WHITE &quot; + esc.NORMAL
122+
print esc.NORMAL
123+
print &quot;USE COLORS AND FORMATS:&quot;
124+
print
125+
print esc.NORMAL + esc.BOLD + esc.UNDERLINE + esc.GREEN + esc.BG_WHITE + &quot;BOLD + UNDELINE + COLOR&quot; + esc.NORMAL
126+
print
127+
print &quot;CONTROL THE CURSOR:&quot;
128+
print
129+
print esc.MOVE_TO_COLUMN(4) + &quot;MOVE TO COLUMN 4&quot;
130+
print &quot;TABS:&quot; + esc.TB + &quot;ONE TAB&quot; + esc.TB + esc.TB + &quot;TWO MORE TABS&quot;
131+
print &quot;YOU SHOULD NOT READ THIS&quot; + esc.RET + &quot;RETURN TO BEGIN OF LINE &quot;
132+
print &quot;FIRST LINE&quot; + esc.NEXTLINE + &quot;NEXT LINE&quot;
133+
print esc.SAVECURSOR + &quot;YOU SHOULD NOT READ THIS&quot;
134+
print esc.RESTORECURSOR + esc.CLEAR_LINE + &quot;SAVE AND RESTORE THE CURSOR POSITION&quot;
135+
print
136+
print &quot;OTHER:&quot;
137+
print
138+
print esc.QUOTE + &quot;YOU CAN USE QUOTES&quot; + esc.QUOTE
139+
print esc.BP + &quot;A BEEP SHOULD BE AUDIBLE&quot;</code></pre>
140+
<h2 id="escape-codes-in-smallbasic-console-version">Escape codes in SmallBASIC console version</h2>
141+
<p>In the console version of SmallBASIC (sbasic.exe or sbasic) most of the escape codes, for example <a href="http://en.wikipedia.org/wiki/ANSI_escape_code">ANSI Codes at wikipedia</a>, can be used in version 12.25 or later. The support of the escape codes depends on the operating system and the terminal you are using.</p>
103142
</div>
104143
<div class="pagefooter">
105-
This page was last edited on Fri, 30 Mar 2018 12:09:12 +1000
144+
This page was last edited on Tue, 20 Dec 2022 23:03:24 +0100
106145
|
107146
<a href="https://en.wikipedia.org/wiki/Markdown" target="_blank" rel="nofollow">Markdown</a>
108147
processed with

pages/guide.html

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,10 @@ <h3 id="Reals">Reals</h3>
140140
<h3 id="Strings">Strings</h3>
141141
<p>Strings may be appended to one another using the + operator.</p>
142142
<pre><code>b = &quot;Hello, &quot; + &quot;world!&quot;</code></pre>
143+
<pre><code>b = &quot;&quot;&quot;This is
144+
a string
145+
over several lines
146+
with line breaks&quot;&quot;&quot;</code></pre>
143147
<h3 id="Constants">Constants</h3>
144148
<p>Constant variables can be declared by using the keyword CONST.</p>
145149
<pre><code>CONST my_pi = 3.14</code></pre>
@@ -336,14 +340,13 @@ <h3 id="Compile"><em>Compile-Time</em></h3>
336340
<h3 id="Statement4">Statement OPTION PREDEF parameter</h3>
337341
<p>Sets parameters of the compiler. Where <span class="code">parameter</span></p>
338342
<ul>
339-
<li>QUIET Sets the quiet flag (-q option)</li>
340-
<li>COMMAND cmdstr Sets the <span class="code">COMMAND$</span> string to <span class="code">var</span> (useful for debug reasons)</li>
341-
<li>GRMODE [widthxheight[xbpp]] Sets the graphics mode flag (-g option) or sets the preferred screen resolution. Example: (Clie HiRes)</li>
342-
</ul>
343-
<pre><code>OPTION PREDEF GRMODE 320x320x16</code></pre>
344-
<ul>
345-
<li>TEXTMODE Sets the text mode flag (-g- option)</li>
346-
<li>CSTR Sets as default string style the C-style special character encoding (‘\’)</li>
343+
<li><p>QUIET Sets the quiet flag (-q option)</p></li>
344+
<li><p>COMMAND cmdstr Sets the <span class="code">COMMAND$</span> string to <span class="code">var</span> (useful for debug reasons)</p></li>
345+
<li><p>GRMODE [widthxheight[xbpp]] Sets the graphics mode flag (-g option) or sets the preferred screen resolution. Example: (Clie HiRes)</p>
346+
<pre><code>OPTION PREDEF GRMODE 320x320x16</code></pre></li>
347+
<li><p>TEXTMODE Sets the text mode flag (-g- option)</p></li>
348+
<li><p>CSTR Sets as default string style the C-style special character encoding (‘\’)</p></li>
349+
<li><p>ANTIALIAS off : Disable anti-aliasing for drawing commands like CIRCEL or LINE</p></li>
347350
</ul>
348351
<h3 id="Meta">Meta-commands</h3>
349352
<p>#!…</p>
@@ -743,7 +746,7 @@ <h2 id="loops-and-expressions">Loops and expressions</h2>
743746
<p>Of course, it is much faster too.</p>
744747
</div>
745748
<div class="pagefooter">
746-
This page was last edited on Tue, 20 Mar 2018 20:01:10 +1000
749+
This page was last edited on Thu, 22 Dec 2022 14:05:08 +0100
747750
|
748751
<a href="https://en.wikipedia.org/wiki/Markdown" target="_blank" rel="nofollow">Markdown</a>
749752
processed with

pages/math.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ <h1>Math</h1>
143143
<li><a href="/reference/761.html">STATMEANDEV</a></li>
144144
<li><a href="/reference/762.html">STATSPREADP</a></li>
145145
<li><a href="/reference/763.html">STATSPREADS</a></li>
146+
<li><a href="/reference/1800.html">STATSTD</a></li>
146147
<li><a href="/reference/764.html">SUM</a></li>
147148
<li><a href="/reference/765.html">SUMSQ</a></li>
148149
<li><a href="/reference/766.html">TAN</a></li>

pages/reference.html

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -380,32 +380,33 @@ <h1 id="language-reference">Language reference</h1>
380380

381381

382382

383+
383384

384385

385386
<a title="Returns the absolute value of x." href="/reference/704.html">ABS</a>&nbsp;
386387
<a title="Returns the absolute max value of x." href="/reference/705.html">ABSMAX</a>&nbsp;
387388
<a title="Returns the absolute min value of x." href="/reference/706.html">ABSMIN</a>&nbsp;
388389
<a title="Returns the access rights of the file." href="/reference/580.html">ACCESS</a>&nbsp;
389390
<a title="Inverse cosine." href="/reference/707.html">ACOS</a>&nbsp;
390-
<a title="Inverse cosine." href="/reference/708.html">ACOSH</a>&nbsp;
391+
<a title="Inverse hyperbolic cosine." href="/reference/708.html">ACOSH</a>&nbsp;
391392
<a title="Inverse cotangent." href="/reference/709.html">ACOT</a>&nbsp;
392-
<a title="Inverse cotangent." href="/reference/710.html">ACOTH</a>&nbsp;
393+
<a title="Inverse hyperbolic cotangent." href="/reference/710.html">ACOTH</a>&nbsp;
393394
<a title="Inverse co secant." href="/reference/711.html">ACSC</a>&nbsp;
394-
<a title="Inverse co secant." href="/reference/712.html">ACSCH</a>&nbsp;
395+
<a title="Inverse hyperbolic co secant." href="/reference/712.html">ACSCH</a>&nbsp;
395396
<a title="Logical AND. Right side is not evaluated if left side evaluates to False." href="/reference/662.html">AND</a>&nbsp;
396397
<a title="Inserts the values at the end of the specified array." href="/reference/581.html">APPEND</a>&nbsp;
397398
<a title="Draws an arc. astart, aend = first,last angle in radians." href="/reference/611.html">ARC</a>&nbsp;
398399
<a title="Creates a ARRAY or MAP variable from the given string or expression" href="/reference/1432.html">ARRAY</a>&nbsp;
399400
<a title="See: OPEN" href="/reference/1424.html">AS</a>&nbsp;
400401
<a title="Returns the ASCII code of first character of the string s." href="/reference/771.html">ASC</a>&nbsp;
401402
<a title="Inverse secant." href="/reference/713.html">ASEC</a>&nbsp;
402-
<a title="Inverse secant." href="/reference/714.html">ASECH</a>&nbsp;
403+
<a title="Inverse hyperbolic secant." href="/reference/714.html">ASECH</a>&nbsp;
403404
<a title="Inverse sine." href="/reference/715.html">ASIN</a>&nbsp;
404-
<a title="Inverse sine." href="/reference/716.html">ASINH</a>&nbsp;
405+
<a title="Inverse hyperbolic sine." href="/reference/716.html">ASINH</a>&nbsp;
405406
<a title="Moves the console cursor to the specified position. x,y are in pixels." href="/reference/521.html">AT</a>&nbsp;
406407
<a title="Inverse tangent." href="/reference/717.html">ATAN</a>&nbsp;
407408
<a title="Inverse tangent (x,y)." href="/reference/718.html">ATAN2</a>&nbsp;
408-
<a title="Inverse tangent." href="/reference/719.html">ATANH</a>&nbsp;
409+
<a title="Inverse hyperbolic tangent." href="/reference/719.html">ATANH</a>&nbsp;
409410
<a title="Inverse tangent." href="/reference/720.html">ATN</a>&nbsp;
410411
<a title="Bitwise AND." href="/reference/663.html">BAND</a>&nbsp;
411412
<a title="Converts (B)ASIC-style strings to (C)-style (S)trings." href="/reference/772.html">BCS</a>&nbsp;
@@ -438,11 +439,11 @@ <h1 id="language-reference">Language reference</h1>
438439
<a title="Declare a variable who's value does not change during program execution." href="/reference/678.html">CONST</a>&nbsp;
439440
<a title="Makes a copy of specified file to the 'newfile'." href="/reference/588.html">COPY</a>&nbsp;
440441
<a title="Cosine." href="/reference/722.html">COS</a>&nbsp;
441-
<a title="Cosine." href="/reference/723.html">COSH</a>&nbsp;
442+
<a title="Hyperbolic cosine." href="/reference/723.html">COSH</a>&nbsp;
442443
<a title="Cotangent." href="/reference/724.html">COT</a>&nbsp;
443-
<a title="Cotangent." href="/reference/725.html">COTH</a>&nbsp;
444+
<a title="Hyperbolic cotangent." href="/reference/725.html">COTH</a>&nbsp;
444445
<a title="Co secant." href="/reference/726.html">CSC</a>&nbsp;
445-
<a title="Co secant." href="/reference/727.html">CSCH</a>&nbsp;
446+
<a title="Hyperbolic co secant." href="/reference/727.html">CSCH</a>&nbsp;
446447
<a title="Current working directory" href="/reference/1522.html">CWD</a>&nbsp;
447448
<a title="Stores one or more constants, of any type, for subsequent access via READ command." href="/reference/569.html">DATA</a>&nbsp;
448449
<a title="Returns the current date as string \"DD/MM/YYYY\"." href="/reference/575.html">DATE</a>&nbsp;
@@ -615,7 +616,7 @@ <h1 id="language-reference">Language reference</h1>
615616
<a title="Version and build information" href="/reference/1523.html">SBVER</a>&nbsp;
616617
<a title="Scans an array for the key. If key is not found the SEARCH command returns (in ridx) the value. (LBOUND(A)-1). In default-base arrays that means -1. The cmpfunc (if its specified) it takes 2 vars to compare. It must return 0 if x = y; non-zero if x <> y." href="/reference/548.html">SEARCH</a>&nbsp;
617618
<a title="Secant." href="/reference/750.html">SEC</a>&nbsp;
618-
<a title="Secant." href="/reference/751.html">SECH</a>&nbsp;
619+
<a title="Hyperbolic secant." href="/reference/751.html">SECH</a>&nbsp;
619620
<a title="Sets file position for the next read/write." href="/reference/597.html">SEEK</a>&nbsp;
620621
<a title="Returns the current file position." href="/reference/610.html">SEEK</a>&nbsp;
621622
<a title="Cosine of 2 line segments (A->B, C->D)." href="/reference/752.html">SEGCOS</a>&nbsp;
@@ -627,7 +628,7 @@ <h1 id="language-reference">Language reference</h1>
627628
<a title="Sign of x (+1 for positive, -1 for negative and 0 for zero)." href="/reference/756.html">SGN</a>&nbsp;
628629
<a title="This command is used to display pending graphics operations allowing for smooth animations." href="/reference/1429.html">SHOWPAGE</a>&nbsp;
629630
<a title="Sine." href="/reference/757.html">SIN</a>&nbsp;
630-
<a title="Sine." href="/reference/758.html">SINH</a>&nbsp;
631+
<a title="Hyperbolic sine." href="/reference/758.html">SINH</a>&nbsp;
631632
<a title="Splits the string 'src' into variables which are separated by delimiters." href="/reference/768.html">SINPUT</a>&nbsp;
632633
<a title="Sorts an array. The cmpfunc if specified, takes 2 vars to compare and must return: -1 if x < y, +1 if x > y, 0 if x = y." href="/reference/549.html">SORT</a>&nbsp;
633634
<a title="Plays a sound." href="/reference/536.html">SOUND</a>&nbsp;
@@ -638,9 +639,10 @@ <h1 id="language-reference">Language reference</h1>
638639
<a title="Square root of x." href="/reference/759.html">SQR</a>&nbsp;
639640
<a title="Removes all leading, trailing and duplicated white-space." href="/reference/798.html">SQUEEZE</a>&nbsp;
640641
<a title="Arithmetical mean." href="/reference/760.html">STATMEAN</a>&nbsp;
641-
<a title="Mean deviation." href="/reference/761.html">STATMEANDEV</a>&nbsp;
642-
<a title="Sample spread." href="/reference/762.html">STATSPREADP</a>&nbsp;
643-
<a title="Population spread." href="/reference/763.html">STATSPREADS</a>&nbsp;
642+
<a title="Mean absolute deviation around arithmetic mean." href="/reference/761.html">STATMEANDEV</a>&nbsp;
643+
<a title="Biased sample variance." href="/reference/762.html">STATSPREADP</a>&nbsp;
644+
<a title="Unbiased sample variance." href="/reference/763.html">STATSPREADS</a>&nbsp;
645+
<a title="Standard deviation." href="/reference/1800.html">STATSTD</a>&nbsp;
644646
<a title="Specifies the loop counter increment in a FOR loop" href="/reference/1421.html">STEP</a>&nbsp;
645647
<a title="Display internal execution stack." href="/reference/812.html">STKDUMP</a>&nbsp;
646648
<a title="Terminates execution of a program, closes all files opened by the program, and returns control to the operating system." href="/reference/656.html">STOP</a>&nbsp;

0 commit comments

Comments
 (0)