Physik M 513.805 (511.015)
Outline
Formulas
Skills
Apps
Exam questions
Exercise notes
The mathematical functions that can be used are list below. Multiplication must be specified with a '*' symbol, 3*cos(x) not 3cos(x). Powers are specified with the 'pow' function: x³ is pow(x,3) or x**3 not x^3.
● print(x) - Text or variables can be printed to the Script Output box with the print(x) function. Text should be put in quotes, print("Print some text"). The value of variable x can be printed with print(x) and text can be mixed with variables by concatenating them together with a + sign, print("The length is "+x+" m.").
Script Output