User`s guide

7 Libraries
Note Testing your application on your development machine is an important
step to help ensure that your application is compilable. To verify that your
application compiled properly, you must test all functionality that is available
with the application. If you receive an e rror m es sage similar to
Undefined
function
or Attempt to execute script script_na me as a function,it
is likely that the application will not run properly on deployment machines.
Most likely, your CTF archive is mis sing some necessary functions. U se
-a to
add the m issing functions to the archive and recompile your code.
1 To run the standalone application, add the directory containing the shared
library that was created in step 2 in “Building the Shared Library” on page
7-4 to your dynamic library path.
2 Update the p ath for your platform by following the instructions in
“Developing and Testing Components on a Development Machine” on page
1-12.
3 Run the driver application from the prompt (DOS prompt on Windows,
shell prompt on UNIX) by typing the application name.
matrixdriver.exe (On Windows)
matrixdriver (On UNIX)
The results are displayed as
The value of added matrix is:
2.00 8.00 14.00
4.00 10.00 16.00
6.00 12.00 18.00
The value of the multiplied matrix is:
30.00 66.00 102.00
36.00 81.00 126.00
42.00 96.00 150.00
The eigenvalues of the first matrix are:
16.12 -1.12 -0.00
7-8