Wiki-Quellcode von Text Variables
Version 390.1 von Carina Enke am 08.05.2019
Zeige letzte Bearbeiter
author | version | line-number | content |
---|---|---|---|
1 | {{sv-translation language="de"}} | ||
2 | {{layout}} | ||
3 | {{layout-section ac:type="single"}} | ||
4 | {{layout-cell}}{{/layout-cell}} | ||
5 | {{/layout-section}} | ||
6 | |||
7 | {{layout-section ac:type="two_right_sidebar"}} | ||
8 | {{layout-cell}} | ||
9 | Sie können Variablen mit Text-Inhalten generieren. Hierfür steht Ihnen der Variablen-Typ "**Text**" zur Verfügung. | ||
10 | |||
11 | [[image:attach:Editor - Textvariable Typauswahl_de.png]] | ||
12 | |||
13 | Folgend werden Ihnen die Möglichkeiten zur Wertsetzung von Text-Variablen vorgestellt. | ||
14 | |||
15 | [[image:attach:Editor - Textvariable Wertsetzung_de.png]] | ||
16 | |||
17 | |||
18 | |||
19 | (% class="confluence-embedded-file-wrapper image-center-wrapper confluence-embedded-manual-size" %) | ||
20 | |||
21 | {{/layout-cell}} | ||
22 | |||
23 | {{layout-cell}} | ||
24 | {{scroll-ignore}} | ||
25 | {{panel borderColor="#ddd" bgColor="#f0f0f0" borderStyle="solid" title="Inhalt"}} | ||
26 | |||
27 | |||
28 | {{toc/}} | ||
29 | {{/panel}} | ||
30 | |||
31 | {{panel borderColor="#ddd" bgColor="#f0f0f0" borderStyle="solid" title="Verwandte Themen"}} | ||
32 | * [[doc:Berechnungsaufgabe]] | ||
33 | * [[doc:Formelvergleich]] | ||
34 | {{/panel}} | ||
35 | |||
36 | {{panel borderColor="#ddd" bgColor="#f0f0f0" borderStyle="solid" title="Weiterführende Informationen"}} | ||
37 | * [[MAXIMA Manual>>url:http://maxima.sourceforge.net/docs/manual/maxima.html||shape="rect"]] | ||
38 | * [[MAXIMA Good-Practice-Beispiele>>url:https://bildungsportal.sachsen.de/opal/auth/RepositoryEntry/5499682817/CourseNode/93229879750473/wiki/Index||shape="rect"]] | ||
39 | * [[MAXIMA Systeminformationen>>url:http://maxima.sourceforge.net/||rel="nofollow" shape="rect" class="external-link"]] | ||
40 | {{/panel}} | ||
41 | {{/scroll-ignore}} | ||
42 | {{/layout-cell}} | ||
43 | {{/layout-section}} | ||
44 | |||
45 | {{layout-section ac:type="single"}} | ||
46 | {{layout-cell}} | ||
47 | == Zufällige Auswahl == | ||
48 | |||
49 | Definieren Sie eine Werte-Liste, aus welcher zufällig ein Wert ausgewählt wird. Die alternativen Werte werden durch Zeilenumbruch, Komma oder Semikolon getrennt. | ||
50 | Wenn im Auswahlwert ein Komma enthalten ist, setzen Sie dieses bitte mit einem Backslash vor dem Komma um. //(Beispiel: "Die Bedingung\, dass ...")// | ||
51 | |||
52 | **Mögliche Eingaben sind beispielsweise:** | ||
53 | |||
54 | * //Zufällige Auswahl: Auto; Motorrad; Fahrrad: //Es wird zufällig einer der angegebenen Werte ausgewählt bspw. "Fahrrad". | ||
55 | \\ | ||
56 | |||
57 | {{info}} | ||
58 | Folgende Beispiele zum Einsatz von numerischen Variablen zur Generierung von Zufallswerten zeigen typische Anwendungsszenarien: | ||
59 | |||
60 | * [[Beispiel "Digging a hole">>doc:Beispiele zum Einsatz von Variablen]] | ||
61 | * [[Beispiel "Transport" - Einsatz von Zufallsparametern>>doc:Beispiele zum Einsatz von Variablen]] | ||
62 | {{/info}} | ||
63 | |||
64 | == Direkte Wert-Setzung == | ||
65 | |||
66 | Sie können allen Variablen-Typen einen Wert direkt zuweisen und die Variable mit diesem Wert initialisieren. Der Wert kann später in Abhängigkeit anderer Variablen geändert werden (vgl. Bedingungen). | ||
67 | |||
68 | **Mögliche Eingaben sind beispielsweise:** | ||
69 | |||
70 | * //Wert: Hans: //Die Variable wird auf den Wert "Hans" gesetzt. | ||
71 | * //Wert: Die Funktion ist monoton wachsend: //Die Variable wird auf den Wert "Die Funktion ist monoton wachsend" gesetzt. | ||
72 | |||
73 | == Berechnung (MAXIMA) == | ||
74 | |||
75 | [[MAXIMA>>url:http://maxima.sourceforge.net/||shape="rect"]] ermöglicht die Arbeit mit Zeichenketten und Formeln. Sie können Variablenwerte auf Basis anderer Variablen berechnen. Geben Sie Ihre Berechnungsvorschrift in MAXIMA-Schreibweise an. | ||
76 | |||
77 | {{info}} | ||
78 | Detaillierte Hinweise zur MAXIMA-Schreibweise erhalten Sie im [[MAXIMA Benutzerhandbuch (Manual)>>url:http://maxima.sourceforge.net/docs/manual/de/maxima.html||shape="rect"]]. Eine wertvolle Zusammenstellung von Beispielumsetzungen finden Sie in Form eines Wikis unter [[MAXIMA Good-Practice-Beispiele>>url:https://bildungsportal.sachsen.de/opal/auth/RepositoryEntry/5499682817/CourseNode/93229879750473/wiki/Index||shape="rect"]]. | ||
79 | {{/info}} | ||
80 | |||
81 | **Mögliche Eingaben sind beispielsweise:** | ||
82 | |||
83 | * //Berechnung (MAXIMA): string({a}*x+5): //Es wird eine einfache Funktionsgleichung durch Einsatz des Variablenwertes {a} berechnet. Die Variable {a} muss zuvor definiert sein. | ||
84 | * //Berechnung (MAXIMA): string(integrate({function},x,0,1)):** **//MAXIMA ermöglicht komplexe mathematische Berechnungen. Die Ableitung einer Beispielfunktion (bspw. 5*x+5) könnte als Wert "15/2" zurückliefern. | ||
85 | * //Berechnung (MAXIMA): tex1(matrix([{a1},{a2}],[{b1},{b2}])): //MAXIMA ermöglicht auch die Rückgabe von LATEX-Inhalten. | ||
86 | |||
87 | [[image:attach:Editor - Textvariable Wertsetzung per Maxima_de.png]] | ||
88 | {{/layout-cell}} | ||
89 | {{/layout-section}} | ||
90 | {{/layout}} | ||
91 | {{/sv-translation}} | ||
92 | |||
93 | {{sv-translation language="en"}} | ||
94 | {{layout}} | ||
95 | {{layout-section ac:type="two_right_sidebar"}} | ||
96 | {{layout-cell}} | ||
97 | You can generate variables with text content. For this purpose, the variable type "**Text**" is available to you. | ||
98 | |||
99 | [[image:attach:image2017-3-23 8:25:28.png]] | ||
100 | |||
101 | To alter the value for the text variable, different options are available, which will be explained in the following sections. | ||
102 | |||
103 | [[image:attach:image2017-3-23 8:27:46.png]] | ||
104 | {{/layout-cell}} | ||
105 | |||
106 | {{layout-cell}} | ||
107 | {{scroll-ignore}} | ||
108 | {{panel borderColor="#ddd" bgColor="#f0f0f0" borderStyle="solid" title="Content"}} | ||
109 | |||
110 | |||
111 | {{toc/}} | ||
112 | |||
113 | **Related topics** | ||
114 | |||
115 | * [[Calculation task>>url:https://www.bps-system.de/help/display/ONYXintern/.Berechnungsaufgabe+v1.11||shape="rect"]] | ||
116 | * [[Formula comparison>>url:https://www.bps-system.de/help/display/ONYXintern/.Formelvergleich+v1.11||shape="rect"]] | ||
117 | {{/panel}} | ||
118 | |||
119 | {{panel borderColor="#ddd" bgColor="#f0f0f0" borderStyle="solid" title="Further information"}} | ||
120 | * [[MAXIMA Manual>>url:http://maxima.sourceforge.net/docs/manual/de/maxima.html||shape="rect"]] | ||
121 | * [[MAXIMA Good-Practice-Beispiele>>url:https://bildungsportal.sachsen.de/opal/auth/RepositoryEntry/5499682817/CourseNode/93229879750473/wiki/Index||shape="rect"]] | ||
122 | * [[MAXIMA Systeminformationen>>url:http://maxima.sourceforge.net/||rel="nofollow" shape="rect" class="external-link"]] | ||
123 | {{/panel}} | ||
124 | {{/scroll-ignore}} | ||
125 | {{/layout-cell}} | ||
126 | {{/layout-section}} | ||
127 | |||
128 | {{layout-section ac:type="single"}} | ||
129 | {{layout-cell}} | ||
130 | == Random selection == | ||
131 | |||
132 | Define a value list from which a value is randomly selected. The alternative values are separated by a line break, comma, or semicolon. | ||
133 | |||
134 | If the selection value contains a comma, a backslash needs to be inserted before the comma. //(Example: "The condition\, which ...")// | ||
135 | |||
136 | **Possible entries are for example:** | ||
137 | |||
138 | * //Random selection: Car; motorcycle; bicycle: //One of the specified values will be randomly selected, for example "bicycle". | ||
139 | |||
140 | === Example "digging a hole" === | ||
141 | |||
142 | |((( | ||
143 | [[image:attach:image2017-3-23 8:32:30.png]] | ||
144 | )))|((( | ||
145 | In the example, the text variable {PEOPLE} will be randomly initialised with one of the following values: "men", "women", or "children". | ||
146 | ))) | ||
147 | |((( | ||
148 | [[image:attach:image2017-3-23 8:36:15.png]] | ||
149 | )))|((( | ||
150 | To insert the variable into the task text, you need to type the variable name {PEOPLE}. In the example, the variable is included in a task of the type [[calculation (cloze)>>url:https://www.bps-system.de/help/display/ONYXintern/.Berechnungsaufgabe+v1.11||shape="rect"]]. | ||
151 | ))) | ||
152 | |((( | ||
153 | [[image:attach:image2017-3-23 8:38:49.png]] | ||
154 | )))|((( | ||
155 | One of the defined values will then be randomly chosen for each participant and each test attempt. In the example, the value "women" was inserted. | ||
156 | ))) | ||
157 | |||
158 | == Direct value assignment == | ||
159 | |||
160 | You can directly assign a value to all types of variables in order to initialise them. Later on, the value can be changed depending on other variables (cf. conditions). | ||
161 | |||
162 | **Possible entries are for example:** | ||
163 | |||
164 | * //Value: Hans: //The variable is assigned the value "Hans". | ||
165 | * //Value: The function increases linearly: //The variable is assigned the value "the function increases linearly". | ||
166 | |||
167 | == Calculation (MAXIMA) == | ||
168 | |||
169 | [[MAXIMA>>url:http://maxima.sourceforge.net/||shape="rect"]] allows for the work with strings and formulas. You can calculate variable values on the basis of other variables. Indicate your calculation rule in MAXIMA notation. | ||
170 | |||
171 | {{info}} | ||
172 | For further information on the MAXIMA notation, please refer to the help pages of the [[computer>>url:http://maxima.sourceforge.net/||shape="rect"]] [[algebra system MAXIMA>>url:http://maxima.sourceforge.net/||shape="rect"]]. | ||
173 | {{/info}} | ||
174 | |||
175 | **Possible entries are for example:** | ||
176 | |||
177 | * //Calculation (MAXIMA): string({a}*x+5): //A simple function equation is calculated including the variable value {a}. Plase note that the variable {a} must have been previously defined. | ||
178 | * //Calculation (MAXIMA): string(integrate({function},x,0,1)): //MAXIMA enables complex mathematical calculations. The derivative of a sample function (e.g. 5*x+5) could result in the value "15/2". | ||
179 | * //Calculation (MAXIMA): tex1(matrix([{a1},{a2}],[{b1},{b2}])): //MAXIMA also facilitates the return of latex content. | ||
180 | |||
181 | [[image:attach:image2017-3-22 15:24:50.png]] | ||
182 | {{/layout-cell}} | ||
183 | {{/layout-section}} | ||
184 | {{/layout}} | ||
185 | {{/sv-translation}} |