[ Prev | Index | Next ]
Japanese English

Step 4 - How to Add Functions/Variables by Scripts
(Library Scripts)

You can define variables and functions in script files in "lib" folder, and use them in expressions of the Step-1 and Step-2, and in scripts of the Step-3. Scripts for providing functions/variables is referred as "library scripts" on the RINPn and the Vnano.

How to Use Library Scripts

There is an example library script "ExampleLibrary.vnano" in "lib" folder, and it is set to be loaded by default.

An example library script "ExampleLibrary.vnano" is in "lib" folder, and it is set to be loaded by default. The content of this example script is as follows:

(The content of "ExampleLibrary.vnano" in "lib" folder)

float libvar = 2.0;

float libfun(float x) {
    float result = libvar * x + 1;
    return result;
}
As a side note, in the Vnano, the precision of "float" type is 64-bit, as same as the "double".

In the expression/script inputted to the RINPn (see Step-1, Step-2, and Step-3), you can use variables and functions defined in the above "ExampleLibrary.vnano", as the following example:

INPUT:
1 + libvar

OUTPUT:
3

INPUT:
libfun(1.23)

OUTPUT:
3.46

How to Add New Library Scripts

If you want, you can create other (new) library script files, and define functions/variables in it.

When you have created/appended new library script files, describe its file path in the content of the text file "VnanoLibraryList.txt" in "lib" folder, for loading it.



Sponsored Link



Japanese English
Index of this category
News

Released Ver.1.0 of the Scientific Calculator App "RINPn"
2022/12/31 - We have released the first general release version (Ver.1.0) of the programmable scientific calculato app "RINPn". Explains the details.

Released Ver.1.0 of Vnano Scripting Engine/Language
2022/12/12 - Vnano Scripting Engine has transited from the beta stage to the general release stage, and we have released the first general release version: 1.0. Explains the details.

Updated the Scientific Calculator "RINPn": Added a Retractable Key-Panel, etc.
2022/11/11 - We have updated the scientific calculator app &quto;RINPn" to Ver.0.9.4. Explains the details of the changes by this update.

Code Archive
Circular Wave Animation

Draws the circular wave as 3D animation, under the specified wave parameters.
2022/12/14
Sine Wave Animation

Draws the sine wave as animation, under the specified wave parameters.
2022/11/26
Tool For Converting Units of Angles: Degrees and Radians

A GUI tool for converting the angle in degrees into radians, or radians into degrees.
2022/11/22
Fizz Buzz Program

A program printing the correct result of Fizz Buzz game.
2022/05/12
Vnano | Solve The Lorenz Equations Numerically

Solve the Lorenz equations, and output data to plot the solution curve (well-known as the "Lorenz Attractor") on a 3D graph.
2021/02/18
» More
Announcementi Twitter j