Properties
Category
German
Similar Topics
Statistics
Comments
4
Participants
4
Subscribers
26
Votes
1
Views
1129
Share
Solved
Hallo,
ich habe eine Tabelle angelegt, und würde darauf gerne bestimmte Werte, sagen wir die aus Spalte B2-B6, zufällig in eine Funktionsgleichung einsetzen lassen. Ich bekomm es einfach nicht hin ...
ich freue mich auf Antworten !!!
- GeoGebra
- Help
- Partners
-
Contact us
- Feedback & Questions
- This email address is being protected from spambots. You need JavaScript enabled to view it.
- +43 677 6137 2693
© 2023 International GeoGebra Institute
you can define ie:B2=RandomBetween(-5, 5,true) or RandomBetween(-5, 5) (see the help or try both and press F9)
then select B2 and drag down the little blue square rigth-down of selection rectangle
then define the function ie:(B2 x^2+B3 x+B4)/(x^2+B5 x+B6)
oder vielleicht liste={B2,B3,B4,B5,B6}
a= ZufälligesElement(liste), b=Zuf... , c=Zuf... und f(x) = a x² + b x + c
chris
Ergänzend zu chris:
anstelle von: liste={B2,B3,B4,B5,B6}
ist auch die folgende Form möglich: liste=B2:B6
Dieser Ausdruck kann auch direkt verwendet werden:
a= ZufälligesElement(B2:B6)
und wenn Sie wollen das a, b ... nicht gleich sind:
liste= Mischen{B2:B}
a=liste(1), b=liste(2)
chris
Comments have been locked on this page!