/usr/share/doc/sbmltoolbox/html/convenience.html is in sbmltoolbox 4.1.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 | <style type='text/css'>
/*/*/ /*<![CDATA[*/
@import "style.css";
/*]]>*/ /* */
</style>
<h3>CONVENIENCE</h3>
<p>The Convenience folder contains a number of convenience functions for checking information or manipulating math expressions.</p>
<p>Function are:</p>
<hr>
<h4>y = CheckValidUnitKind(kind)</h4>
<p>Takes</p>
<ol>
<li>kind, a string representing a unit kind </li>
</ol>
<p>Returns </p>
<ol>
<li>y =
<ul>
<li>1 if the string represents a valid unit kind </li>
<li>0 otherwise</li>
</ul></li>
</ol>
<p><em>NOTE:</em> This is identical to the function isValidUnitKind</p>
<hr>
<h4>newArray = LoseWhiteSpace(charArray)</h4>
<p>Takes</p>
<ol>
<li>charArray, an array of characters </li>
</ol>
<p>Returns </p>
<ol>
<li>the array with any white space removed</li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> newArray = LoseWhiteSpace(' exa mp le')
newArray = 'example'
</code></pre>
<hr>
<h4>pairs = PairBrackets(expression)</h4>
<p>Takes</p>
<ol>
<li>expression, a string representation of a math expression</li>
</ol>
<p>Returns</p>
<ol>
<li>an array of the indices of each pair of brackets ordered from
the opening bracket index</li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> pairs = PairBrackets('(a+((b*c)/(a+b)))')
pairs =
1 17
4 16
5 9
11 15
</code></pre>
<hr>
<h4>output = Rearrange(expression, name)</h4>
<p>Takes</p>
<ol>
<li>expression, a string representation of a math expression</li>
<li>name, a string representing the name of a variable</li>
</ol>
<p>Returns</p>
<ol>
<li>the expression rearranged in terms of the variable</li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> output = Rearrange('X + Y - Z', 'X')
output = '-Y+Z'
</code></pre>
<hr>
<h4>newArray = RemoveDuplicates(array)</h4>
<p>Takes</p>
<ol>
<li>array, any array</li>
</ol>
<p>Returns</p>
<ol>
<li>the array with any duplicate entries removed </li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> newArray = RemoveDuplicates([2, 3, 4, 3, 2, 5])
newArray = [2, 3, 4, 5]
</code></pre>
<hr>
<h4>value = Substitute(expression, SBMLModel)</h4>
<p>Takes</p>
<ol>
<li>expression, a string representation of a math expression</li>
<li>SBMLModel, an SBML Model structure</li>
</ol>
<p>Returns</p>
<ol>
<li>the value of the expression when all variables within the model have
been substituted</li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> Consider m to be an SBMLModel containing a species with
id = 'g' and initialConcentration = '3'
value = Substitute('g*2', m)
value = 6
</code></pre>
<hr>
<h4>newExpression = SubstituteConstants(expression, SBMLModel)</h4>
<p>Takes</p>
<ol>
<li>expression, a string representation of a math expression</li>
<li>SBMLModel, an SBML Model structure</li>
</ol>
<p>Returns</p>
<ol>
<li>the string representation of the expression when all constants within the
model have been substituted</li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> Consider m to be an SBMLModel containing a parameter
with id = 'g', constant = '1' and value = 3'
newExpression = SubstituteConstants('2 * g * S1', SBMLModel)
newExpression = '2 * 3 * S1'
</code></pre>
<hr>
<h4>newExpression = SubstituteFunction(expression, SBMLFunctionDefinition)</h4>
<p>Takes</p>
<ol>
<li>expression, a string representation of a math expression</li>
<li>SBMLFunctionDefinition, an SBML FunctionDefinition structure</li>
</ol>
<p>Returns</p>
<ol>
<li>newExpression
<ul>
<li>the string representation of the expression when any instances of the
functionDefinition have been substituted</li>
<li>an empty string if the functiondefinition is not in the original
expression</li>
</ul></li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> Consider fD to be an SBMLFunctionDefinition
with id = 'g' and math = 'lambda(x,x+0.5)'
formula = SubstituteFormula('g(y)', fD)
formula = 'y+0.5'
formula = SubstituteFormula('h(y)', fD)
formula = ''
</code></pre>
<hr>
<h4>y = isIntegralNumber(number)</h4>
<p>Takes</p>
<ol>
<li>number, any number</li>
</ol>
<p>Returns</p>
<ol>
<li>y = </li>
<li>1 if the number represents an integer </li>
<li>0 otherwise </li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> y = isIntegralNumber(int32(3))
y = 1
y = isIntegralNumber(double(3.2))
y = 0
y = isIntegralNumber(double(3))
y = 1
</code></pre>
<p><em>NOTE:</em> The inbuilt 'isinteger' function only returns true if the number
has been declared as having an integer type, whereas the default type for numbers
in MATLAB is double. This function will return '1' if the number
represents an integer.</p>
<hr>
<h4>y = isValidUnitKind(kind)</h4>
<p>Takes</p>
<ol>
<li>kind, a string representing a unit kind </li>
</ol>
<p>returns </p>
<ol>
<li>y =
<ul>
<li>1 if the string represents a valid unit kind </li>
<li>0 otherwise</li>
</ul></li>
</ol>
<p><em>NOTE:</em> This is identical to the function CheckValidUnitKind</p>
<hr>
<h4>index = matchFunctionName(expression, name)</h4>
<p>Takes</p>
<ol>
<li>expression, a string representation of a math expression</li>
<li>name, a string representing the name of a function</li>
</ol>
<p>Returns</p>
<ol>
<li>the index of the starting point of 'name' in the 'expression'</li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> index = matchFunctionName('f*g', 'g')
index = []
index = matchFunctionName('add(d,g_1)', 'add')
index = 0
index = matchFunctionName('add(add(a,b), c)', 'add')
index = [1, 5]
</code></pre>
<p><em>NOTE:</em> This differs from the 'strfind' function in that it checks
that the name is used as a function call.</p>
<hr>
<h4>index = matchName(expression, name)</h4>
<p>Takes</p>
<ol>
<li>expression, a string representation of a math expression</li>
<li>name, a string representing the name of a variable</li>
</ol>
<p>Returns</p>
<ol>
<li>the index of the starting point of 'name' in the 'expression'</li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> index = matchName('f*g', 'g')
index = 3
index = matchName('f*g_1', 'g')
index = []
index = matchName('f*g(a,g)', 'g')
index = 7
</code></pre>
<p><em>NOTE:</em> This differs from the 'strfind' function in that it checks
that the name is used as a variable.</p>
<hr>
<h4>value = piecewise(value1, test, value2)</h4>
<p>Takes</p>
<ol>
<li>value1, the value to return if the test is true</li>
<li>test, a boolean test that will return true or false</li>
<li>value2, the value to return if the test is false</li>
</ol>
<p>Returns</p>
<ol>
<li>value =
<ul>
<li>value1, if test returns true</li>
<li>value2, if test returns false</li>
</ul></li>
</ol>
<p><em>EXAMPLE:</em></p>
<pre><code> value = piecewise(3, 1<2, 4)
value = 3
value = piecewise(3, 1>2, 4)
value = 4
</code></pre>
<p><em>NOTE:</em> This function provides the functionality of the MathML 'piecewise' function.</p>
<hr>
<h4>y = testmember(value, array)</h4>
<p>Takes</p>
<ol>
<li>value, any number/string</li>
<li>array, an array of objects </li>
</ol>
<p>Returns </p>
<ol>
<li>y =
<ul>
<li>1 if value is a member of the array </li>
<li>0 otherwise</li>
</ul></li>
</ol>
<p><em>NOTE:</em> this function is necessary for octave to emulate the MATLAB
functionality of the 'ismember' function</p>
<hr>
|