Skip to content

Commit

Permalink
v0.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelson-numerical-software committed Sep 28, 2022
1 parent 1ee0f38 commit 1c9c65c
Show file tree
Hide file tree
Showing 142 changed files with 4,180 additions and 260 deletions.
8 changes: 4 additions & 4 deletions help/en_US/addgateway.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
<table width = "100%"><tr>

<td width="40%" class="center">
<span class="top"><a href="chapter_dynamic_link.html">Dynamic link</a></span>
<span class="top"><a href="chapter_modules_manager.html">Modules manager</a></span>
</td>

<td width = "30%" class = "next">
<span class = "next"><a href = "cmake.html">cmake &gt;&gt;</a></span>
<span class = "next"><a href = "addmodule.html">addmodule &gt;&gt;</a></span>
</td>

</tr></table>
Expand Down Expand Up @@ -111,11 +111,11 @@ <h3>Author</h3>
<table width = "100%"><tr>

<td width="40%" class="center">
<span class="top"><a href="chapter_dynamic_link.html">Dynamic link</a></span>
<span class="top"><a href="chapter_modules_manager.html">Modules manager</a></span>
</td>

<td width = "30%" class = "next">
<span class = "next"><a href = "cmake.html">cmake &gt;&gt;</a></span>
<span class = "next"><a href = "addmodule.html">addmodule &gt;&gt;</a></span>
</td>

</tr></table>
Expand Down
12 changes: 10 additions & 2 deletions help/en_US/addmodule.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,16 @@
<div class = "manualnavbar">
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="addgateway.html">&lt;&lt; addgateway</a></span>
</td>

<td width="40%" class="center">
<span class="top"><a href="chapter_modules_manager.html">Modules manager</a></span>
</td>

<td width = "30%" class = "next">
<span class = "next"><a href = "getmodules.html">getmodules &gt;&gt;</a></span>
<span class = "next"><a href = "gatewayinfo.html">gatewayinfo &gt;&gt;</a></span>
</td>

</tr></table>
Expand Down Expand Up @@ -116,12 +120,16 @@ <h3>Author</h3>
<div class = "manualnavbar">
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="addgateway.html">&lt;&lt; addgateway</a></span>
</td>

<td width="40%" class="center">
<span class="top"><a href="chapter_modules_manager.html">Modules manager</a></span>
</td>

<td width = "30%" class = "next">
<span class = "next"><a href = "getmodules.html">getmodules &gt;&gt;</a></span>
<span class = "next"><a href = "gatewayinfo.html">gatewayinfo &gt;&gt;</a></span>
</td>

</tr></table>
Expand Down
150 changes: 150 additions & 0 deletions help/en_US/bandwidth.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns = "http://www.w3.org/1999/xhtml">
<!--
SAME AS NELSON SOFTWARE
-->

<head>
<meta name="generator" content=
"HTML Generated by Nelson"/>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" href="mono-blue.css" type="text/css" />
<script src = "highlight.pack.js" type = "text/javascript">
</script>
<script type = "text/javascript">hljs.highlightAll();</script>
</script>
<meta http-equiv="Content-Type" content = "text/html; charset=utf-8" />
<title>bandwidth</title>

</head>
<body>

<div class = "manualnavbar">
<table width = "100%"><tr>

<td width="40%" class="center">
<span class="top"><a href="chapter_linear_algebra.html">Linear algebra</a></span>
</td>

<td width = "30%" class = "next">
<span class = "next"><a href = "chol.html">chol &gt;&gt;</a></span>
</td>

</tr></table>
<hr />

<h1 class="refname">bandwidth</h1>
<hr/>

<h3>Lower and upper matrix bandwidth.</h3>
<hr/>

<h3>Syntax</h3>
<hr/>

<table summary="syntax" style="width:50%">
<tr>
<td>[lower, upper] = bandwidth(A)</td>
</tr>

<tr>
<td>R = bandwidth(A, type)</td>
</tr>

</table>

<h3>Input argument</h3>
<hr/>

<dl>
<dt><span class="term">A</span></dt>
<dd>
<p class="para">Input matrix</p>
</dd>

<dt><span class="term">type</span></dt>
<dd>
<p class="para">'upper' or 'lower'</p>
</dd>

</dl>

<h3>Output argument</h3>
<hr/>

<dl>
<dt><span class="term">lower, upper</span></dt>
<dd>
<p class="para">lower bandwidth,</p>
</dd>

<dt><span class="term">R</span></dt>
<dd>
<p class="para">lower or upper bandwidth.</p>
</dd>

</dl>

<h3>Description</h3>
<hr/>

<p></p>

<p><b>[lower, upper] = bandwidth(A)</b> returns <b>lower</b> and <b>upper</b> bandwidths of matrix <b>A</b>.</p>


<h3>Example</h3>
<hr/>

<pre>
<code class = "nelson">M = [10 -20 40; -50 20 0; 10 0 30]
[lower, upper] = bandwidth(M)
</code>
</pre>

<h3>See also</h3>
<hr/>

<p>
<a href = "isbanded.html" class = "link">isbanded</a>.</p>

<h3>History</h3>
<hr/>

<table summary = "history" style="width:50%">
<tr>
<th>Version</th>
<th>Description</th>
</tr>
<tr>
<td>1.0.0</td>
<td>initial version</td>
</tr>

</table>

<h3>Author</h3>
<hr/>

<p>Allan CORNET</p>

<div class = "manualnavbar">
<table width = "100%"><tr>

<td width="40%" class="center">
<span class="top"><a href="chapter_linear_algebra.html">Linear algebra</a></span>
</td>

<td width = "30%" class = "next">
<span class = "next"><a href = "chol.html">chol &gt;&gt;</a></span>
</td>

</tr></table>
<hr />

</body>

</html>

4 changes: 2 additions & 2 deletions help/en_US/betainc.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</td>

<td width = "30%" class = "next">
<span class = "next"><a href = "factor.html">factor &gt;&gt;</a></span>
<span class = "next"><a href = "cross.html">cross &gt;&gt;</a></span>
</td>

</tr></table>
Expand Down Expand Up @@ -143,7 +143,7 @@ <h3>Author</h3>
</td>

<td width = "30%" class = "next">
<span class = "next"><a href = "factor.html">factor &gt;&gt;</a></span>
<span class = "next"><a href = "cross.html">cross &gt;&gt;</a></span>
</td>

</tr></table>
Expand Down
4 changes: 2 additions & 2 deletions help/en_US/chapter_JSON.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down Expand Up @@ -49,7 +49,7 @@ <h3>Functions to transmit data objects consisting of attribute–value pairs and
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down
4 changes: 2 additions & 2 deletions help/en_US/chapter_MEX.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down Expand Up @@ -61,7 +61,7 @@ <h3>MEX C API is allow to access Nelson, GNU Octave and commercial software func
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down
4 changes: 2 additions & 2 deletions help/en_US/chapter_assert_functions.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down Expand Up @@ -52,7 +52,7 @@ <h3>The aim of these functions is to provide tools to test some other functions.
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down
8 changes: 6 additions & 2 deletions help/en_US/chapter_audio.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down Expand Up @@ -56,17 +56,21 @@ <h3>Audio playback functions.</h3>
<li><a href = "audiowrite.html" class="refentry">audiowrite</a> &#8212; <span class = "refentry-description">Writes an audio file.</span></li>
<li><a href = "beep.html" class="refentry">beep</a> &#8212; <span class = "refentry-description">Produces a beep sound.</span></li>
<li><a href = "isplaying.html" class="refentry">isplaying</a> &#8212; <span class = "refentry-description">get info about audio playback is in progress.</span></li>
<li><a href = "lin2mu.html" class="refentry">lin2mu</a> &#8212; <span class = "refentry-description">Convert audio data from linear singal to mu-law.</span></li>
<li><a href = "mu2lin.html" class="refentry">mu2lin</a> &#8212; <span class = "refentry-description">Convert audio data from mu-law to linear signal.</span></li>
<li><a href = "play.html" class="refentry">play</a> &#8212; <span class = "refentry-description">Plays an audioplayer object.</span></li>
<li><a href = "playblocking.html" class="refentry">playblocking</a> &#8212; <span class = "refentry-description">Plays an audioplayer object with blocking.</span></li>
<li><a href = "resume.html" class="refentry">resume</a> &#8212; <span class = "refentry-description">Resumes an audioplayer object.</span></li>
<li><a href = "sound.html" class="refentry">sound</a> &#8212; <span class = "refentry-description">Convert matrix of signal data to sound and play it.</span></li>
<li><a href = "soundsc.html" class="refentry">soundsc</a> &#8212; <span class = "refentry-description">Scale data and play as sound.</span></li>
<li><a href = "stop.html" class="refentry">stop</a> &#8212; <span class = "refentry-description">Stops an audioplayer object.</span></li>
</ul>

<div class = "manualnavbar">
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down
4 changes: 2 additions & 2 deletions help/en_US/chapter_characters_encoding.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down Expand Up @@ -49,7 +49,7 @@ <h3>characters encoding functions</h3>
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down
4 changes: 2 additions & 2 deletions help/en_US/chapter_com_engine.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down Expand Up @@ -65,7 +65,7 @@ <h3>Component Object Model (COM) client interface: binary-interface standard for
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down
4 changes: 2 additions & 2 deletions help/en_US/chapter_console.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down Expand Up @@ -49,7 +49,7 @@ <h3>Console</h3>
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down
4 changes: 2 additions & 2 deletions help/en_US/chapter_constructors_functions.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down Expand Up @@ -55,7 +55,7 @@ <h3>Create scalars, vectors, or matrices</h3>
<table width = "100%"><tr>

<td width="30%" class="previous">
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.8.0</a></span>
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.6.9.0</a></span>
</td>

<td width="40%" class="center">
Expand Down
Loading

0 comments on commit 1c9c65c

Please sign in to comment.