|
|
Java
Tools
|
||||
|
|
|||||
mfcMathematical Foundation ClassesThe mfc package provides high level classes for basis mathematical purposes. Until now it only contains essential classes for computational algebra:
Internally, all data is adminstered with primitive data types for performance reasons. Externally, all classes offer a great deal of functionality and convenience.
The general convention for all classes is the following:
Operations can be performed using two sets of methods. To multiply,
for example, two instances
C = A.times(B) or C.assignTimes(A,B)
to store the result in All operations follow this convention, and data types mix:
To multiply and instance
A = A.times(d) or A.assignTimes(d)
Entries can be accessed using |
|||||
|