﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<?application progid="SMath Studio Desktop" version="0.96.4909.6802"?>
<regions>
  <settings>
    <identity>
      <id>be8ed228-7b9f-4d88-9521-f6039e697cd5</id>
      <revision>48</revision>
    </identity>
    <calculation>
      <precision>4</precision>
      <exponentialThreshold>5</exponentialThreshold>
      <fractions>decimal</fractions>
    </calculation>
    <pageModel active="true" printAreas="true" simpleEqualsOnly="false" printBackgroundImages="true">
      <paper id="9" orientation="Portrait" width="827" height="1169" />
      <margins left="39" right="39" top="39" bottom="39" />
      <header alignment="Center" color="#a9a9a9">&amp;[DATE] &amp;[TIME] - &amp;[FILENAME]</header>
      <footer alignment="Center" color="#a9a9a9">&amp;[PAGENUM] / &amp;[COUNT]</footer>
      <backgrounds />
    </pageModel>
    <dependences>
      <assembly name="SMath Studio Desktop" version="0.96.4909.6802" guid="a37cba83-b69c-4c71-9992-55ff666763bd" />
      <assembly name="Text Region" version="1.9.4909.6785" guid="485d28c5-349a-48b6-93be-12a35a1c1e39" />
      <assembly name="Math Region" version="0.96.4909.6802" guid="02f1ab51-215b-466e-a74d-5d8b1cf85e8d" />
      <assembly name="Special Functions" version="1.10.4909.6779" guid="2814e667-4e12-48b1-8d51-194e480eabc5" />
      <assembly name="Custom Functions" version="1.0.4902.41872" guid="18dadffd-79a3-4cf9-aee1-d66deb0ea720" />
    </dependences>
  </settings>
  <region id="0" left="9" top="18" width="119" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">String Processing</p>
    </text>
    <text lang="ger">
      <p bold="true">Zeichenketten</p>
    </text>
  </region>
  <region id="1" left="576" top="27" width="127" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p href="Kapitel Programmierung.sm">Programming</p>
    </text>
    <text lang="ger">
      <p href="Kapitel Programmierung.sm">Programmierung</p>
    </text>
  </region>
  <region id="2" left="576" top="45" width="61" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p href="Handbook.sm">Contents</p>
    </text>
    <text lang="ger">
      <p href="Handbook.sm">Inhalt</p>
    </text>
  </region>
  <region id="3" left="9" top="54" width="119" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Concatenate strings </p>
    </text>
    <text lang="ger">
      <p bold="true">Zusammenfügen</p>
    </text>
  </region>
  <region id="4" top="72" color="#000000" bgColor="#ffffff">
    <area collapsed="true" />
    <region id="5" left="27" top="81" width="344" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abc</e>
          <e type="operand" style="string">def</e>
          <e type="operand" style="string">ghi</e>
          <e type="function" preserve="true" args="3">concat</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">abcdefghi</e>
        </result>
      </math>
    </region>
    <region id="6" top="108" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="7" left="9" top="117" width="209" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Get substrings</p>
    </text>
    <text lang="ger">
      <p bold="true">Teilketten herausgreifen</p>
    </text>
  </region>
  <region id="8" top="135" color="#000000" bgColor="#ffffff">
    <area collapsed="true" />
    <region id="9" left="27" top="144" width="353" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abcdefghijkdef</e>
          <e type="operand">5</e>
          <e type="function" preserve="true" args="2">substr</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">efghijkdef</e>
        </result>
      </math>
    </region>
    <region id="10" left="27" top="171" width="319" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abcdefghijkdef</e>
          <e type="operand">5</e>
          <e type="operand">3</e>
          <e type="function" preserve="true" args="3">substr</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">efg</e>
        </result>
      </math>
    </region>
    <region id="11" top="189" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="12" left="9" top="198" width="308" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Replace or delete substrings</p>
    </text>
    <text lang="ger">
      <p bold="true">Ersetzen oder Löschen von Teilketten</p>
    </text>
  </region>
  <region id="13" top="216" color="#000000" bgColor="#ffffff">
    <area collapsed="true" />
    <region id="14" left="27" top="225" width="526" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abcdefghijkdef</e>
          <e type="operand" style="string">def</e>
          <e type="operand" style="string">_DEF_</e>
          <e type="function" preserve="true" args="3">strrep</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">abc_DEF_ghijk_DEF_</e>
        </result>
      </math>
    </region>
    <region id="15" left="27" top="252" width="401" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abcdefghijkdef</e>
          <e type="operand" style="string">def</e>
          <e type="operand" style="string" />
          <e type="function" preserve="true" args="3">strrep</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">abcghijk</e>
        </result>
      </math>
    </region>
    <region id="16" top="270" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="17" left="9" top="279" width="151" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Find substrings</p>
    </text>
    <text lang="ger">
      <p bold="true">Teilketten suchen</p>
    </text>
  </region>
  <region id="18" top="297" color="#000000" bgColor="#ffffff">
    <area collapsed="true" />
    <region id="19" left="9" top="306" width="694" height="56" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>The function findstr() returns a vector with start positions of the substring in a given string. Returns -1 if the substring was not found</p>
      </text>
      <text lang="ger">
        <p>Die Funktion findstr() liefert einen Vektor mit den Anfangspositionen der Teilkettein einer gegebenen Zeichenkette. Wenn die Teilkette nicht vorkommt, wird -1 zurückgegeben.</p>
      </text>
    </region>
    <region id="20" left="27" top="360" width="321" height="44" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abcdefghijkdef</e>
          <e type="operand" style="string">def</e>
          <e type="function" preserve="true" args="2">findstr</e>
        </input>
        <result action="numeric">
          <e type="operand">4</e>
          <e type="operand">12</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="4">mat</e>
        </result>
      </math>
    </region>
    <region id="21" left="27" top="405" width="305" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abcdefghijkdef</e>
          <e type="operand" style="string">ab</e>
          <e type="function" preserve="true" args="2">findstr</e>
        </input>
        <result action="numeric">
          <e type="operand">1</e>
          <e type="operand">1</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="3">mat</e>
        </result>
      </math>
    </region>
    <region id="22" left="27" top="441" width="305" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abcdefghijkdef</e>
          <e type="operand" style="string">xy</e>
          <e type="function" preserve="true" args="2">findstr</e>
        </input>
        <result action="numeric">
          <e type="operand">1</e>
          <e type="operator" args="1">-</e>
        </result>
      </math>
    </region>
    <region id="23" top="468" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="24" left="9" top="477" width="209" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Length of a string</p>
    </text>
    <text lang="ger">
      <p bold="true">Länge einer Zeichenkette</p>
    </text>
  </region>
  <region id="25" top="495" color="#000000" bgColor="#ffffff">
    <area collapsed="true" />
    <region id="26" left="27" top="504" width="164" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">12345</e>
          <e type="function" preserve="true" args="1">strlen</e>
        </input>
        <result action="numeric">
          <e type="operand">5</e>
        </result>
      </math>
    </region>
    <region id="27" top="522" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="28" left="9" top="531" width="316" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Test if type is string</p>
    </text>
    <text lang="ger">
      <p bold="true">Prüfen, ob eine Zeichenkette vorliegt</p>
    </text>
  </region>
  <region id="29" top="549" color="#000000" bgColor="#ffffff">
    <area collapsed="true" />
    <region id="30" left="27" top="558" width="164" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abc</e>
          <e type="function" preserve="true" args="1">IsString</e>
        </input>
        <result action="numeric">
          <e type="operand">1</e>
        </result>
      </math>
    </region>
    <region id="31" left="27" top="585" width="153" height="30" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="bracket">(</e>
          <e type="function" preserve="true" args="1">IsString</e>
        </input>
        <result action="numeric">
          <e type="operand">0</e>
        </result>
      </math>
    </region>
    <region id="32" left="27" top="612" width="173" height="46" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abc</e>
          <e type="operand" style="string">1</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="4">sys</e>
          <e type="function" preserve="true" args="1">IsString</e>
        </input>
        <result action="numeric">
          <e type="operand">0</e>
        </result>
      </math>
    </region>
    <region id="33" left="198" top="621" width="317" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>expression is of type list ("system")</p>
      </text>
      <text lang="ger">
        <p>Ausdruck ist vom Typ "Liste" (system)</p>
      </text>
    </region>
    <region id="34" top="648" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="35" left="9" top="657" width="291" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Convert expressions to strings</p>
    </text>
    <text lang="ger">
      <p bold="true">Ausdruck in Zeichenkette umwandeln</p>
    </text>
  </region>
  <region id="36" top="675" color="#000000" bgColor="#ffffff">
    <area collapsed="true" />
    <region id="37" left="27" top="684" width="190" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math decimalPlaces="2">
        <input>
          <e type="operand">2.3</e>
          <e type="function" preserve="true" args="1">num2str</e>
        </input>
        <result action="symbolic">
          <e type="operand" style="string">23/10</e>
        </result>
      </math>
    </region>
    <region id="38" left="333" top="693" width="365" height="72" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>The expressions are evaluated symbolically and converted into the internal text representation.Number format cannot be specified.</p>
      </text>
      <text lang="ger">
        <p>Die Ausdrücke werden symbolisch ausgewertetund in die interne Textdarstellung umgewandelt. Man kann kein Format für dieZahlen vorgeben.</p>
      </text>
    </region>
    <region id="39" left="27" top="711" width="177" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math decimalPlaces="2">
        <input>
          <e type="operand">a</e>
          <e type="operand">b</e>
          <e type="operator" args="2">+</e>
          <e type="function" preserve="true" args="1">num2str</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">a+b</e>
        </result>
      </math>
    </region>
    <region id="40" left="27" top="738" width="273" height="46" color="#000000" bgColor="#ffffff" fontSize="10">
      <math decimalPlaces="2">
        <input>
          <e type="operand" style="string">a</e>
          <e type="operand">π</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="4">sys</e>
          <e type="function" preserve="true" args="1">num2str</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">sys("a",π,2,1)</e>
        </result>
      </math>
    </region>
    <region id="41" left="27" top="783" width="288" height="46" color="#000000" bgColor="#ffffff" fontSize="10">
      <math decimalPlaces="2">
        <input>
          <e type="operand">1</e>
          <e type="operand">2</e>
          <e type="operand">3</e>
          <e type="operand">4</e>
          <e type="operand">2</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="6">mat</e>
          <e type="function" preserve="true" args="1">num2str</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">mat(1,2,3,4,2,2)</e>
        </result>
      </math>
    </region>
    <region id="42" left="27" top="828" width="262" height="42" color="#000000" bgColor="#ffffff" fontSize="10">
      <math decimalPlaces="2">
        <input>
          <e type="operand">x</e>
          <e type="operand">2</e>
          <e type="operator" args="2">^</e>
          <e type="operand">x</e>
          <e type="function" preserve="true" args="2">int</e>
          <e type="function" preserve="true" args="1">num2str</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">int(x^2,x)</e>
        </result>
      </math>
    </region>
    <region id="43" top="873" color="#000000" bgColor="#ffffff">
      <area collapsed="true">
        <title lang="ger">
          <p>num2str cannot handle strings with spaces</p>
        </title>
      </area>
      <region id="44" left="27" top="891" width="146" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
        <math decimalPlaces="2">
          <input>
            <e type="operand">c</e>
            <e type="operand" style="string">a b</e>
            <e type="function" preserve="true" args="1">num2str</e>
            <e type="operator" args="2">:</e>
          </input>
        </math>
      </region>
      <region id="45" left="189" top="891" width="53" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
        <math error="2">
          <input>
            <e type="operand">c</e>
          </input>
          <result action="numeric">
            <e type="operand">#</e>
          </result>
        </math>
      </region>
      <region id="46" left="27" top="918" width="45" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
        <math error="2">
          <input>
            <e type="operand"> </e>
          </input>
          <result action="numeric">
            <e type="operand">#</e>
          </result>
        </math>
      </region>
      <region id="47" top="936" color="#000000" bgColor="#ffffff">
        <area terminator="true" />
      </region>
    </region>
    <region id="48" top="963" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="49" left="9" top="972" width="184" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Formatting of numbers</p>
    </text>
    <text lang="ger">
      <p bold="true">Zahlenformatierung</p>
    </text>
  </region>
  <region id="50" top="990" color="#000000" bgColor="#ffffff">
    <area collapsed="false" />
    <region id="51" left="9" top="1008" width="711" height="40" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>The function num2str() ignores all display settings for number formatting. Therefore,it is usually not appropriate for generation of labels in plots.</p>
      </text>
      <text lang="ger">
        <p>Die Funktion num2str() ignoriert alle Einstellungen für die Ergebnisformatierung. Die resultierende Zahlendarstellung ist in der Regel für Beschriftungszwecke ungeeignet:</p>
      </text>
    </region>
    <region id="52" left="27" top="1053" width="214" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">12.34</e>
          <e type="function" preserve="true" args="1">num2str</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">617/50</e>
        </result>
      </math>
    </region>
    <region id="53" left="9" top="1089" width="693" height="56" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>The function format() shown here represents numbers in decimal form  with n decimal places after the delimiter d. If n is negative, the number is rounded to the corresponding power of 10.</p>
      </text>
      <text lang="ger">
        <p>Die hier vorgestellte Funktion format() stellt Zahlen in Dezimalschreibweise mit auf n Stellen nach dem Komma gerundet dar. Bei negativem n wird wird auf entsprechende Potenzen von 10 gerundet.</p>
      </text>
    </region>
    <region id="54" left="27" top="1152" width="599" height="194" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">x</e>
          <e type="operand">n</e>
          <e type="operand">d</e>
          <e type="function" args="3">format</e>
          <e type="operand">rs</e>
          <e type="operand">x</e>
          <e type="operand">10</e>
          <e type="operand">n</e>
          <e type="operator" args="2">^</e>
          <e type="operator" args="2">*</e>
          <e type="function" preserve="true" args="1">round</e>
          <e type="function" preserve="true" args="1">eval</e>
          <e type="function" preserve="true" args="1">num2str</e>
          <e type="operator" args="2">:</e>
          <e type="operand">l</e>
          <e type="operand">rs</e>
          <e type="function" preserve="true" args="1">strlen</e>
          <e type="operator" args="2">:</e>
          <e type="operand">n</e>
          <e type="operand">0</e>
          <e type="operator" args="2">≡</e>
          <e type="operand">rs</e>
          <e type="operand">n</e>
          <e type="operand">0</e>
          <e type="operator" args="2">&gt;</e>
          <e type="operand">rs</e>
          <e type="operand">1</e>
          <e type="operand">l</e>
          <e type="operand">n</e>
          <e type="operator" args="2">-</e>
          <e type="function" preserve="true" args="3">substr</e>
          <e type="operand">d</e>
          <e type="operand">rs</e>
          <e type="operand">l</e>
          <e type="operand">n</e>
          <e type="operator" args="2">-</e>
          <e type="operand">1</e>
          <e type="operator" args="2">+</e>
          <e type="operand">n</e>
          <e type="function" preserve="true" args="3">substr</e>
          <e type="function" preserve="true" args="3">concat</e>
          <e type="operand">10</e>
          <e type="operand">n</e>
          <e type="operator" args="1">-</e>
          <e type="operator" args="2">^</e>
          <e type="bracket">(</e>
          <e type="operand">x</e>
          <e type="operand">10</e>
          <e type="operand">n</e>
          <e type="operator" args="2">^</e>
          <e type="operator" args="2">*</e>
          <e type="function" preserve="true" args="1">round</e>
          <e type="operator" args="2">*</e>
          <e type="function" preserve="true" args="1">eval</e>
          <e type="function" preserve="true" args="1">num2str</e>
          <e type="function" preserve="true" args="3">if</e>
          <e type="function" preserve="true" args="3">if</e>
          <e type="operand">3</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="5">line</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="55" left="27" top="1368" width="238" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">12.34</e>
          <e type="operand">2</e>
          <e type="operator" args="1">-</e>
          <e type="operand" style="string">,</e>
          <e type="function" args="3">format</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">0</e>
        </result>
      </math>
    </region>
    <region id="56" left="27" top="1386" width="246" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">12.34</e>
          <e type="operand">1</e>
          <e type="operator" args="1">-</e>
          <e type="operand" style="string">,</e>
          <e type="function" args="3">format</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">10</e>
        </result>
      </math>
    </region>
    <region id="57" left="27" top="1404" width="237" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">12.34</e>
          <e type="operand">0</e>
          <e type="operand" style="string">,</e>
          <e type="function" args="3">format</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">12</e>
        </result>
      </math>
    </region>
    <region id="58" left="27" top="1422" width="253" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">12.34</e>
          <e type="operand">1</e>
          <e type="operand" style="string">,</e>
          <e type="function" args="3">format</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">12,3</e>
        </result>
      </math>
    </region>
    <region id="59" left="27" top="1440" width="262" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">12.34</e>
          <e type="operand">2</e>
          <e type="operand" style="string">,</e>
          <e type="function" args="3">format</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">12,34</e>
        </result>
      </math>
    </region>
    <region id="60" left="27" top="1458" width="270" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">12.34</e>
          <e type="operand">3</e>
          <e type="operand" style="string">,</e>
          <e type="function" args="3">format</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">12,340</e>
        </result>
      </math>
    </region>
    <region id="61" left="27" top="1476" width="253" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">12.35</e>
          <e type="operand">1</e>
          <e type="operand" style="string">,</e>
          <e type="function" args="3">format</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">12,4</e>
        </result>
      </math>
    </region>
    <region id="62" left="27" top="1494" width="253" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">12.65</e>
          <e type="operand">1</e>
          <e type="operand" style="string">,</e>
          <e type="function" args="3">format</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">12,6</e>
        </result>
      </math>
    </region>
    <region id="63" left="27" top="1512" width="253" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">12.55</e>
          <e type="operand">1</e>
          <e type="operand" style="string">,</e>
          <e type="function" args="3">format</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">12,6</e>
        </result>
      </math>
    </region>
    <region id="64" top="1539" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="65" left="9" top="1548" width="307" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Convert strings to expressions</p>
    </text>
    <text lang="ger">
      <p bold="true">Zeichenketten in Ausdrücke umwandeln</p>
    </text>
  </region>
  <region id="66" top="1566" color="#000000" bgColor="#ffffff">
    <area collapsed="true" />
    <region id="67" left="27" top="1575" width="355" height="48" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">abc</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="4">sys</e>
          <e type="function" preserve="true" args="1">num2str</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">sys("abc",sqrt(2),2,1)</e>
        </result>
      </math>
    </region>
    <region id="68" left="27" top="1620" width="277" height="50" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <description active="true" position="Left" lang="eng">
          <p>symbolic optimization</p>
        </description>
        <description active="true" position="Left" lang="ger">
          <p>symbolische Optimierung</p>
        </description>
        <input>
          <e type="operand" style="string">abc</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="4">sys</e>
          <e type="function" preserve="true" args="1">num2str</e>
          <e type="function" preserve="true" args="1">str2num</e>
        </input>
        <result action="symbolic">
          <e type="operand" style="string">abc</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="4">sys</e>
        </result>
      </math>
    </region>
    <region id="69" left="27" top="1665" width="298" height="36" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <description active="true" position="Left" lang="eng">
          <p>symbolic optimization</p>
        </description>
        <description active="true" position="Left" lang="ger">
          <p>symbolische Optimierung</p>
        </description>
        <input>
          <e type="operand" style="string">sqrt(x^2+y^2)</e>
          <e type="function" preserve="true" args="1">str2num</e>
        </input>
        <result action="symbolic">
          <e type="operand">x</e>
          <e type="operand">2</e>
          <e type="operator" args="2">^</e>
          <e type="operand">y</e>
          <e type="operand">2</e>
          <e type="operator" args="2">^</e>
          <e type="operator" args="2">+</e>
          <e type="function" preserve="true" args="1">sqrt</e>
        </result>
      </math>
    </region>
    <region id="70" top="1701" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="71" left="9" top="1710" width="164" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Description texts</p>
    </text>
    <text lang="ger">
      <p bold="true">Beschreibungstexte </p>
    </text>
  </region>
  <region id="72" top="1728" color="#000000" bgColor="#ffffff">
    <area collapsed="true" />
    <region id="73" left="414" top="1737" width="308" height="56" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>The description text of a math regionis transferred to any variable definedtherein as attribute "description"</p>
      </text>
      <text lang="ger">
        <p>Der Beschreibungstext eines Formel-bereichs wird als Attribut auf diedarin definierten Größen übertragen.</p>
      </text>
    </region>
    <region id="74" left="27" top="1746" width="68" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <description active="true" position="Top" lang="eng">
          <p>Here we define a</p>
        </description>
        <description active="true" position="Top" lang="ger">
          <p>Hier wird a definiert</p>
        </description>
        <input>
          <e type="operand">a</e>
          <e type="operand">1.32</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="75" left="27" top="1791" width="338" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">a</e>
          <e type="function" preserve="true" args="1">description</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">Hier wird a definiert</e>
        </result>
      </math>
    </region>
    <region id="76" left="414" top="1809" width="325" height="88" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>The function description() returns thedescription text of a variable or function as string according to the current GUI language setting. </p>
      </text>
      <text lang="ger">
        <p>Die Funktion description() liefert denzu einem Bezeichner gehörendenBeschreibungstext als Zeichenkettein der jeweils eingestellten GUI-Sprache.</p>
      </text>
    </region>
    <region id="77" left="27" top="1818" width="91" height="44" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <description active="true" position="Top" lang="eng">
          <p>Four definitions at once</p>
        </description>
        <description active="true" position="Top" lang="ger">
          <p>Vier Definitionen auf einmal</p>
        </description>
        <input>
          <e type="operand">a</e>
          <e type="operand">1</e>
          <e type="operator" args="2">:</e>
          <e type="operand">b</e>
          <e type="operand">2</e>
          <e type="operator" args="2">:</e>
          <e type="operand">c</e>
          <e type="operand">3</e>
          <e type="operator" args="2">:</e>
          <e type="operand">d</e>
          <e type="operand">4</e>
          <e type="operator" args="2">:</e>
          <e type="operand">2</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="6">mat</e>
        </input>
      </math>
    </region>
    <region id="78" left="27" top="1890" width="395" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">a</e>
          <e type="function" preserve="true" args="1">description</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">Vier Definitionen auf einmal</e>
        </result>
      </math>
    </region>
    <region id="79" left="27" top="1917" width="395" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">b</e>
          <e type="function" preserve="true" args="1">description</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">Vier Definitionen auf einmal</e>
        </result>
      </math>
    </region>
    <region id="80" top="1935" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="81" left="9" top="1944" width="218" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p bold="true">Upper and lower case</p>
    </text>
    <text lang="ger">
      <p bold="true">Groß- und Kleinschreibung</p>
    </text>
  </region>
  <region id="82" top="1962" color="#000000" bgColor="#ffffff">
    <area collapsed="true" />
    <region id="83" left="9" top="1971" width="640" height="56" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>These functions are defined in the plugin Custom Functions. In contrast to the built-instring functions, they can handle matrices and lists which contain strings.</p>
      </text>
      <text lang="ger">
        <p>Diese Funktionen sind im Plugin Custom Functions enthalten. Anders als die Standardfunktionen für Zeichenketten können sie auch auf Matrizen und Listen angewendet werden, die Zeichenketten enthalten.</p>
      </text>
    </region>
    <region id="84" left="9" top="2034" width="291" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Convert everything to lowercase</p>
      </text>
      <text lang="ger">
        <p>Alles in Kleinbuchstaben umwandeln</p>
      </text>
    </region>
    <region id="85" left="27" top="2061" width="527" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">the QUICK bRoWn FoX...</e>
          <e type="function" preserve="true" args="1">strtolower</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">the quick brown fox...</e>
        </result>
      </math>
    </region>
    <region id="86" left="27" top="2088" width="545" height="66" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">the QUICK bRoWn FoX...</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand" style="string">another sTRINg</e>
          <e type="operand">3</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="5">mat</e>
          <e type="function" preserve="true" args="1">strtolower</e>
        </input>
        <result action="symbolic">
          <e type="operand" style="string">the quick brown fox...</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand" style="string">another string</e>
          <e type="operand">3</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="5">mat</e>
        </result>
      </math>
    </region>
    <region id="87" left="9" top="2160" width="282" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Convert everything to uppercase</p>
      </text>
      <text lang="ger">
        <p>Alles in Großbuchstaben umwandeln</p>
      </text>
    </region>
    <region id="88" left="27" top="2187" width="527" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">the QUICK bRoWn FoX...</e>
          <e type="function" preserve="true" args="1">strtoupper</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">THE QUICK BROWN FOX...</e>
        </result>
      </math>
    </region>
    <region id="89" left="27" top="2223" width="545" height="66" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">the QUICK bRoWn FoX...</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand" style="string">another sTRINg</e>
          <e type="operand">3</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="5">mat</e>
          <e type="function" preserve="true" args="1">strtoupper</e>
        </input>
        <result action="symbolic">
          <e type="operand" style="string">THE QUICK BROWN FOX...</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand" style="string">ANOTHER STRING</e>
          <e type="operand">3</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="5">mat</e>
        </result>
      </math>
    </region>
    <region id="90" left="9" top="2295" width="356" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Convert first character to uppercase</p>
      </text>
      <text lang="ger">
        <p>Erstes Zeichen in Großbuchstaben umwandeln</p>
      </text>
    </region>
    <region id="91" left="27" top="2322" width="503" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">the QUICK bRoWn FoX...</e>
          <e type="function" preserve="true" args="1">ucfirst</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">The QUICK bRoWn FoX...</e>
        </result>
      </math>
    </region>
    <region id="92" left="27" top="2358" width="521" height="66" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">The QUICK bRoWn FoX...</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand" style="string">another sTRINg</e>
          <e type="operand">3</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="5">mat</e>
          <e type="function" preserve="true" args="1">ucfirst</e>
        </input>
        <result action="symbolic">
          <e type="operand" style="string">The QUICK bRoWn FoX...</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand" style="string">Another sTRINg</e>
          <e type="operand">3</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="5">mat</e>
        </result>
      </math>
    </region>
    <region id="93" left="9" top="2430" width="372" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Convert the first character in every word to uppercase</p>
      </text>
      <text lang="ger">
        <p>Jeden Wortanfang in Großbuchstaben umwandeln</p>
      </text>
    </region>
    <region id="94" left="27" top="2457" width="503" height="26" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">the QUICK bRoWn FoX...</e>
          <e type="function" preserve="true" args="1">ucwords</e>
        </input>
        <result action="numeric">
          <e type="operand" style="string">The QUICK BRoWn FoX...</e>
        </result>
      </math>
    </region>
    <region id="95" left="27" top="2493" width="521" height="66" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand" style="string">The QUICK bRoWn FoX...</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand" style="string">another sTRINg</e>
          <e type="operand">3</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="5">mat</e>
          <e type="function" preserve="true" args="1">ucwords</e>
        </input>
        <result action="symbolic">
          <e type="operand" style="string">The QUICK BRoWn FoX...</e>
          <e type="operand">2</e>
          <e type="function" preserve="true" args="1">sqrt</e>
          <e type="operand" style="string">Another STRINg</e>
          <e type="operand">3</e>
          <e type="operand">1</e>
          <e type="function" preserve="true" args="5">mat</e>
        </result>
      </math>
    </region>
    <region id="96" top="2556" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="97" left="9" top="2592" width="127" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p href="Kapitel Programmierung.sm">Programming</p>
    </text>
    <text lang="ger">
      <p href="Kapitel Programmierung.sm">Programmierung</p>
    </text>
  </region>
  <region id="98" left="9" top="2610" width="61" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="eng">
      <p href="Handbook.sm">Contents</p>
    </text>
    <text lang="ger">
      <p href="Handbook.sm">Inhalt</p>
    </text>
  </region>
  <region id="99" left="9" top="2637" width="188" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <text lang="ger">
      <p italic="true">M. Kraska, 2013-07-28 </p>
    </text>
  </region>
</regions>