You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<blockquote>DIRWALK dir [, wildcards] [USE f(x)]</blockquote>
69
69
<divclass="siteSub">
70
70
<p>
71
71
<ahref="/">Home</a> >
72
72
<ahref="/pages/reference.html">Reference</a> >
73
73
<ahref="/pages/file.html">File</a>
74
74
</p>
75
75
</div>
76
-
<p>Walk through the specified directories. The user-defined function must returns zero to stop the process. The user defined function takes <code>x</code> as a parameter. <code>x</code> contains information about the current file.</p>
77
-
<h2id="example-1-print-all-files">Example 1: Print all files</h2>
76
+
<p>Walk through the specified directory <code>dir</code> and its subdirectories. The user defined function <code>f(x)</code>takes <code>x</code> as a parameter. <code>x</code> contains information about the current file. <code>f(x)</code> must return zero to stop the process. <code>wildcards</code> can be used to filter the files.</p>
77
+
<h3id="example-1-print-all-files">Example 1: Print all files</h3>
Copy file name to clipboardExpand all lines: reference/615.html
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -73,8 +73,8 @@ <h1>DRAW</h1>
73
73
<ahref="/pages/graphics.html">Graphics</a>
74
74
</p>
75
75
</div>
76
-
<p>Draw lines as specified by the given CommandString. The CommandString is created using commands from the Graphics Definition Language. The start point for drawing can be defined using the PSET command. COLOR can be used to change the color of the lines.</p>
<p>Draw lines as specified by the given <code>CommandString</code>. The <code>CommandString</code> is created using commands from the Graphics Definition Language. The start point for drawing can be defined using the PSET command. COLOR can be used to change the color of the lines.</p>
<spanid="cb1-3"><ahref="#cb1-3" aria-hidden="true"></a><spanclass="fu">DRAW</span><spanclass="st">"R50D70L25U25L15D25NR15"</span><spanclass="co">' House part 1</span></span>
<divclass="sourceCode" id="cb2"><preclass="sourceCode smallbasic"><codeclass="sourceCode smallbasic"><spanid="cb2-1"><ahref="#cb2-1" aria-hidden="true"></a><spanclass="co">' Defining the differential equation for a stiffness system</span></span>
Copy file name to clipboardExpand all lines: reference/729.html
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -65,17 +65,18 @@ <h4>SmallBASIC</h4>
65
65
</div>
66
66
<divclass="article">
67
67
<h1>DETERM</h1>
68
-
<blockquote>DETERM (A[, toler])</blockquote>
68
+
<blockquote>D = DETERM (A[, toler])</blockquote>
69
69
<divclass="siteSub">
70
70
<p>
71
71
<ahref="/">Home</a> >
72
72
<ahref="/pages/reference.html">Reference</a> >
73
73
<ahref="/pages/math.html">Math</a>
74
74
</p>
75
75
</div>
76
-
<p>Determinant of A. toler = tolerance number. the absolute value of the lowest acceptable number. default = 0.</p>
76
+
<p>Determinant of <code>A</code>. <code>toler</code> is the tolerance number. It is equivalent to the absolute value of the lowest acceptable number. Default value is <code>0</code>.</p>
0 commit comments