Skip to content

Commit 03b6988

Browse files
0.5.3
1 parent bc827f7 commit 03b6988

75 files changed

Lines changed: 1030 additions & 137 deletions

File tree

Some content is hidden

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

help/en_US/MException.html

Lines changed: 160 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3+
4+
<html xmlns = "http://www.w3.org/1999/xhtml">
5+
<!--
6+
SAME AS NELSON SOFTWARE
7+
-->
8+
9+
<head>
10+
<meta name="generator" content=
11+
"HTML Generated by Nelson"/>
12+
<link rel="stylesheet" type="text/css" href="style.css" />
13+
<link rel="stylesheet" href="mono-blue.css" type="text/css" />
14+
<script src = "highlight.pack.js" type = "text/javascript">
15+
</script>
16+
<script type = "text/javascript">hljs.initHighlightingOnLoad();</script>
17+
</script>
18+
<meta http-equiv="Content-Type" content = "text/html; charset=utf-8" />
19+
<title>MException</title>
20+
21+
</head>
22+
<body>
23+
24+
<div class = "manualnavbar">
25+
<table width = "100%"><tr>
26+
27+
<td width="30%" class="previous">
28+
<span class="top"><a href="lastwarn.html">&lt;&lt; lastwarn</a></span>
29+
</td>
30+
31+
<td width="40%" class="center">
32+
<span class="top"><a href="chapter_error_manager.html">error manager</a></span>
33+
</td>
34+
35+
<td width = "30%" class = "next">
36+
<span class = "next"><a href = "rethrow.html">rethrow &gt;&gt;</a></span>
37+
</td>
38+
39+
</tr></table>
40+
<hr />
41+
42+
<h1 class="refname">MException</h1>
43+
<hr/>
44+
45+
<h3>Matrix Exception information.</h3>
46+
<hr/>
47+
48+
<h3>Syntax</h3>
49+
<hr/>
50+
51+
<table summary="syntax" style="width:50%">
52+
<tr>
53+
<td>ME = MException(identifier, message)</td>
54+
</tr>
55+
56+
<tr>
57+
<td>ME = MException('last')</td>
58+
</tr>
59+
60+
<tr>
61+
<td>MException('reset')</td>
62+
</tr>
63+
64+
</table>
65+
66+
<h3>Input argument</h3>
67+
<hr/>
68+
69+
<dl>
70+
<dt><span class="term">identifier</span></dt>
71+
<dd>
72+
<p class="para">a string: error identifier.</p>
73+
</dd>
74+
75+
<dt><span class="term">message</span></dt>
76+
<dd>
77+
<p class="para">a string.</p>
78+
</dd>
79+
80+
</dl>
81+
82+
<h3>Output argument</h3>
83+
<hr/>
84+
85+
<dl>
86+
<dt><span class="term">ME</span></dt>
87+
<dd>
88+
<p class="para">a MException object.</p>
89+
</dd>
90+
91+
</dl>
92+
93+
<h3>Description</h3>
94+
<hr/>
95+
96+
<p></p>
97+
98+
<p>All Nelson code that detects an error and throws an exception constructs an MException object.</p>
99+
<p>identifier includes one or more component fields and a mnemonic field (example: 'nelson:matrix:empty')</p>
100+
<p><b>ME = MException('last')</b> return last exception.</p>
101+
<p><b>MException('reset')</b> clears last exception.</p>
102+
103+
104+
<h3>Example</h3>
105+
<hr/>
106+
107+
<pre>
108+
<code class = "nelson">ME = MException('nelson:identifier', 'your error message.')
109+
throw(ME)
110+
</code>
111+
</pre>
112+
113+
<h3>See also</h3>
114+
<hr/>
115+
116+
<p>
117+
<a href = "error.html" class = "link">error</a>, <a href = "try.html" class = "link">try</a>, <a href = "throw.html" class = "link">throw</a>, <a href = "rethrow.html" class = "link">rethrow</a>, <a href = "throwAsCaller.html" class = "link">throwAsCaller</a>.</p>
118+
119+
<h3>History</h3>
120+
<hr/>
121+
122+
<table summary = "history" style="width:50%">
123+
<tr>
124+
<th>Version</th>
125+
<th>Description</th>
126+
</tr>
127+
<tr>
128+
<td>1.0.0</td>
129+
<td>initial version</td>
130+
</tr>
131+
132+
</table>
133+
134+
<h3>Author</h3>
135+
<hr/>
136+
137+
<p>Allan CORNET</p>
138+
139+
<div class = "manualnavbar">
140+
<table width = "100%"><tr>
141+
142+
<td width="30%" class="previous">
143+
<span class="top"><a href="lastwarn.html">&lt;&lt; lastwarn</a></span>
144+
</td>
145+
146+
<td width="40%" class="center">
147+
<span class="top"><a href="chapter_error_manager.html">error manager</a></span>
148+
</td>
149+
150+
<td width = "30%" class = "next">
151+
<span class = "next"><a href = "rethrow.html">rethrow &gt;&gt;</a></span>
152+
</td>
153+
154+
</tr></table>
155+
<hr />
156+
157+
</body>
158+
159+
</html>
160+

help/en_US/atan2.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</td>
3434

3535
<td width = "30%" class = "next">
36-
<span class = "next"><a href = "cos.html">cos &gt;&gt;</a></span>
36+
<span class = "next"><a href = "atanh.html">atanh &gt;&gt;</a></span>
3737
</td>
3838

3939
</tr></table>
@@ -134,7 +134,7 @@ <h3>Author</h3>
134134
</td>
135135

136136
<td width = "30%" class = "next">
137-
<span class = "next"><a href = "cos.html">cos &gt;&gt;</a></span>
137+
<span class = "next"><a href = "atanh.html">atanh &gt;&gt;</a></span>
138138
</td>
139139

140140
</tr></table>

help/en_US/atanh.html

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3+
4+
<html xmlns = "http://www.w3.org/1999/xhtml">
5+
<!--
6+
SAME AS NELSON SOFTWARE
7+
-->
8+
9+
<head>
10+
<meta name="generator" content=
11+
"HTML Generated by Nelson"/>
12+
<link rel="stylesheet" type="text/css" href="style.css" />
13+
<link rel="stylesheet" href="mono-blue.css" type="text/css" />
14+
<script src = "highlight.pack.js" type = "text/javascript">
15+
</script>
16+
<script type = "text/javascript">hljs.initHighlightingOnLoad();</script>
17+
</script>
18+
<meta http-equiv="Content-Type" content = "text/html; charset=utf-8" />
19+
<title>atanh</title>
20+
21+
</head>
22+
<body>
23+
24+
<div class = "manualnavbar">
25+
<table width = "100%"><tr>
26+
27+
<td width="30%" class="previous">
28+
<span class="top"><a href="atan2.html">&lt;&lt; atan2</a></span>
29+
</td>
30+
31+
<td width="40%" class="center">
32+
<span class="top"><a href="chapter_trigonometric_functions.html">trigonometric functions</a></span>
33+
</td>
34+
35+
<td width = "30%" class = "next">
36+
<span class = "next"><a href = "cos.html">cos &gt;&gt;</a></span>
37+
</td>
38+
39+
</tr></table>
40+
<hr />
41+
42+
<h1 class="refname">atanh</h1>
43+
<hr/>
44+
45+
<h3>Computes the inverse hyperbolic tangent.</h3>
46+
<hr/>
47+
48+
<h3>Syntax</h3>
49+
<hr/>
50+
51+
<table summary="syntax" style="width:50%">
52+
<tr>
53+
<td>res = atanh(x)</td>
54+
</tr>
55+
56+
</table>
57+
58+
<h3>Input argument</h3>
59+
<hr/>
60+
61+
<dl>
62+
<dt><span class="term">x</span></dt>
63+
<dd>
64+
<p class="para">a numeric value</p>
65+
</dd>
66+
67+
</dl>
68+
69+
<h3>Output argument</h3>
70+
<hr/>
71+
72+
<dl>
73+
<dt><span class="term">res</span></dt>
74+
<dd>
75+
<p class="para">a numeric value</p>
76+
</dd>
77+
78+
</dl>
79+
80+
<h3>Description</h3>
81+
<hr/>
82+
83+
<p></p>
84+
<b>acos</b> computes the inverse hyperbolic tangent.
85+
86+
<h3>Example</h3>
87+
<hr/>
88+
89+
<pre>
90+
<code class = "nelson">A = [1+2i, 2, -3];
91+
res = atanh(A)
92+
</code>
93+
</pre>
94+
95+
<h3>See also</h3>
96+
<hr/>
97+
98+
<p>
99+
<a href = "tanh.html" class = "link">tanh</a>.</p>
100+
101+
<h3>History</h3>
102+
<hr/>
103+
104+
<table summary = "history" style="width:50%">
105+
<tr>
106+
<th>Version</th>
107+
<th>Description</th>
108+
</tr>
109+
<tr>
110+
<td>1.0.0</td>
111+
<td>initial version</td>
112+
</tr>
113+
114+
</table>
115+
116+
<h3>Author</h3>
117+
<hr/>
118+
119+
<p>Allan CORNET</p>
120+
121+
<div class = "manualnavbar">
122+
<table width = "100%"><tr>
123+
124+
<td width="30%" class="previous">
125+
<span class="top"><a href="atan2.html">&lt;&lt; atan2</a></span>
126+
</td>
127+
128+
<td width="40%" class="center">
129+
<span class="top"><a href="chapter_trigonometric_functions.html">trigonometric functions</a></span>
130+
</td>
131+
132+
<td width = "30%" class = "next">
133+
<span class = "next"><a href = "cos.html">cos &gt;&gt;</a></span>
134+
</td>
135+
136+
</tr></table>
137+
<hr />
138+
139+
</body>
140+
141+
</html>
142+

help/en_US/chapter_JSON.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<table width = "100%"><tr>
2020

2121
<td width="30%" class="previous">
22-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.2.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.3.0</a></span>
2323
</td>
2424

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

5151
<td width="30%" class="previous">
52-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.2.0</a></span>
52+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.3.0</a></span>
5353
</td>
5454

5555
<td width="40%" class="center">

help/en_US/chapter_MEX.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<table width = "100%"><tr>
2020

2121
<td width="30%" class="previous">
22-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.2.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.3.0</a></span>
2323
</td>
2424

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

6262
<td width="30%" class="previous">
63-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.2.0</a></span>
63+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.3.0</a></span>
6464
</td>
6565

6666
<td width="40%" class="center">

help/en_US/chapter_assert_functions.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<table width = "100%"><tr>
2020

2121
<td width="30%" class="previous">
22-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.2.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.3.0</a></span>
2323
</td>
2424

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

5454
<td width="30%" class="previous">
55-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.2.0</a></span>
55+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.3.0</a></span>
5656
</td>
5757

5858
<td width="40%" class="center">

help/en_US/chapter_audio.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<table width = "100%"><tr>
2020

2121
<td width="30%" class="previous">
22-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.2.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.3.0</a></span>
2323
</td>
2424

2525
<td width="40%" class="center">
@@ -66,7 +66,7 @@ <h3>Audio playback functions.</h3>
6666
<table width = "100%"><tr>
6767

6868
<td width="30%" class="previous">
69-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.2.0</a></span>
69+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.5.3.0</a></span>
7070
</td>
7171

7272
<td width="40%" class="center">

0 commit comments

Comments
 (0)