Skip to content

Commit 4dacbfc

Browse files
help files 0.4.12
1 parent 63eef43 commit 4dacbfc

89 files changed

Lines changed: 2059 additions & 155 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/append.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>append</title>
20+
21+
</head>
22+
<body>
23+
24+
<div class = "manualnavbar">
25+
<table width = "100%"><tr>
26+
27+
<td width="40%" class="center">
28+
<span class="top"><a href="chapter_string.html">string type</a></span>
29+
</td>
30+
31+
<td width = "30%" class = "next">
32+
<span class = "next"><a href = "blanks.html">blanks &gt;&gt;</a></span>
33+
</td>
34+
35+
</tr></table>
36+
<hr />
37+
38+
<h1 class="refname">append</h1>
39+
<hr/>
40+
41+
<h3>combines strings horizontally.</h3>
42+
<hr/>
43+
44+
<h3>Syntax</h3>
45+
<hr/>
46+
47+
<table summary="syntax" style="width:50%">
48+
<tr>
49+
<td>res = append(s1, s2, ..., sN)</td>
50+
</tr>
51+
52+
</table>
53+
54+
<h3>Input argument</h3>
55+
<hr/>
56+
57+
<dl>
58+
<dt><span class="term">s1, s2, ..., sN</span></dt>
59+
<dd>
60+
<p class="para">a string, string array or cell of strings.</p>
61+
</dd>
62+
63+
</dl>
64+
65+
<h3>Output argument</h3>
66+
<hr/>
67+
68+
<dl>
69+
<dt><span class="term">res</span></dt>
70+
<dd>
71+
<p class="para">a string, string array or cell of strings.</p>
72+
</dd>
73+
74+
</dl>
75+
76+
<h3>Description</h3>
77+
<hr/>
78+
79+
<p></p>
80+
81+
<p><b>strcat</b> combines strings horizontally.</p>
82+
<p>If all inputs are character arrays, then <b>res</b> is a character array.</p>
83+
<p>If any input is a string array, then the <b>res</b> is a string array.</p>
84+
<p>If any input is a cell array, and none are string arrays, then <b>res</b> is a cell array of character vectors.</p>
85+
<p><b>append</b> does not remove trailing white space.</p>
86+
87+
88+
<h3>Example</h3>
89+
<hr/>
90+
91+
<pre>
92+
<code class = "nelson">append("Nelson", 'nelSon')
93+
A = {'abcde','fghi'};
94+
B = {'jkl','mn'};
95+
C = append(A, B)
96+
</code>
97+
</pre>
98+
99+
<h3>See also</h3>
100+
<hr/>
101+
102+
<p>
103+
<a href = "strcat.html" class = "link">strcat</a>.</p>
104+
105+
<h3>History</h3>
106+
<hr/>
107+
108+
<table summary = "history" style="width:50%">
109+
<tr>
110+
<th>Version</th>
111+
<th>Description</th>
112+
</tr>
113+
<tr>
114+
<td>1.0.0</td>
115+
<td>initial version</td>
116+
</tr>
117+
118+
</table>
119+
120+
<h3>Author</h3>
121+
<hr/>
122+
123+
<p>Allan CORNET</p>
124+
125+
<div class = "manualnavbar">
126+
<table width = "100%"><tr>
127+
128+
<td width="40%" class="center">
129+
<span class="top"><a href="chapter_string.html">string type</a></span>
130+
</td>
131+
132+
<td width = "30%" class = "next">
133+
<span class = "next"><a href = "blanks.html">blanks &gt;&gt;</a></span>
134+
</td>
135+
136+
</tr></table>
137+
<hr />
138+
139+
</body>
140+
141+
</html>
142+

help/en_US/blanks.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
<div class = "manualnavbar">
2525
<table width = "100%"><tr>
2626

27+
<td width="30%" class="previous">
28+
<span class="top"><a href="append.html">&lt;&lt; append</a></span>
29+
</td>
30+
2731
<td width="40%" class="center">
2832
<span class="top"><a href="chapter_string.html">string type</a></span>
2933
</td>
@@ -116,6 +120,10 @@ <h3>Author</h3>
116120
<div class = "manualnavbar">
117121
<table width = "100%"><tr>
118122

123+
<td width="30%" class="previous">
124+
<span class="top"><a href="append.html">&lt;&lt; append</a></span>
125+
</td>
126+
119127
<td width="40%" class="center">
120128
<span class="top"><a href="chapter_string.html">string type</a></span>
121129
</td>

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.4.11.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.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.4.11.0</a></span>
52+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.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.4.11.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.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.4.11.0</a></span>
63+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.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.4.11.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.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.4.11.0</a></span>
55+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.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.4.11.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.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.4.11.0</a></span>
69+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.0</a></span>
7070
</td>
7171

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

help/en_US/chapter_characters_encoding.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.4.11.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.0</a></span>
2323
</td>
2424

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

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

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

help/en_US/chapter_com_engine.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.4.11.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.0</a></span>
2323
</td>
2424

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

6767
<td width="30%" class="previous">
68-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.11.0</a></span>
68+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.0</a></span>
6969
</td>
7070

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

help/en_US/chapter_console.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.4.11.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.0</a></span>
2323
</td>
2424

2525
<td width="40%" class="center">
@@ -48,7 +48,7 @@ <h3>Console</h3>
4848
<table width = "100%"><tr>
4949

5050
<td width="30%" class="previous">
51-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.11.0</a></span>
51+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.0</a></span>
5252
</td>
5353

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

help/en_US/chapter_constructors_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.4.11.0</a></span>
22+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.0</a></span>
2323
</td>
2424

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

5757
<td width="30%" class="previous">
58-
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.11.0</a></span>
58+
<span class="top"><a href="index.html">&lt;&lt; Nelson 0.4.12.0</a></span>
5959
</td>
6060

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

0 commit comments

Comments
 (0)