Uses of Class
math_physics.math.BinaryMatrix
Package | Description |
---|---|
math_physics.math |
Description : Package contenant des classes pour effectuer des
opérations algébriques avancées.
|
-
Uses of BinaryMatrix in math_physics.math
Subclasses of BinaryMatrix in math_physics.math Modifier and Type Class Description class
Matrix
Représente une matrice avec quelques opérations de base entre matrice disponibles.class
Vector3D
Représente un vecteur en 3 dimensions.Methods in math_physics.math that return BinaryMatrix Modifier and Type Method Description abstract BinaryMatrix
BinaryMatrix. copy()
Permet de générer une copie de la matrice actuelle dans un autre objet.abstract BinaryMatrix
BinaryMatrix. divide(double value)
Permet de diviser tous les éléments de la matrice par une valeur.abstract BinaryMatrix
BinaryMatrix. divide(BinaryMatrix other)
Permet de diviser tous les éléments de la matrice par une autre matrice.abstract BinaryMatrix
BinaryMatrix. minus(double value)
Permet de soustraire une valeur à tous les éléments de la matrice.abstract BinaryMatrix
BinaryMatrix. minus(BinaryMatrix other)
Permet de soustraire une matrice B à une matrice A.abstract BinaryMatrix
BinaryMatrix. plus(double value)
Permet d'ajouter une valeur à tous les éléments de la matrice.abstract BinaryMatrix
BinaryMatrix. plus(BinaryMatrix other)
Permet d'ajouter une matrice A à une matrice B.abstract BinaryMatrix
BinaryMatrix. product(double value)
Permet de multiplier tous les éléments de la matrice par une valeur.abstract BinaryMatrix
BinaryMatrix. product(BinaryMatrix other)
Permet d'effectuer un produit matriciel.abstract BinaryMatrix
BinaryMatrix. transpose()
Permet d'avoir la transposée de la matrice.Methods in math_physics.math with parameters of type BinaryMatrix Modifier and Type Method Description boolean
BinaryMatrix. compareMatrix(ConditionOperator operator, BinaryMatrix other)
Permet de comparer toutes les valeurs d'une matrice avec une autre matrice donnée par un opérateur donné.abstract BinaryMatrix
BinaryMatrix. divide(BinaryMatrix other)
Permet de diviser tous les éléments de la matrice par une autre matrice.Matrix
Matrix. divide(BinaryMatrix other)
Permet de diviser tous les éléments de la matrice par une autre matrice.Vector3D
Vector3D. divide(BinaryMatrix other)
Permet de diviser tous les éléments de la matrice par une autre matrice.abstract BinaryMatrix
BinaryMatrix. minus(BinaryMatrix other)
Permet de soustraire une matrice B à une matrice A.Matrix
Matrix. minus(BinaryMatrix other)
Permet de soustraire une matrice B à une matrice A.Vector3D
Vector3D. minus(BinaryMatrix other)
Permet de soustraire un vecteur B à un vecteur A.abstract BinaryMatrix
BinaryMatrix. plus(BinaryMatrix other)
Permet d'ajouter une matrice A à une matrice B.Matrix
Matrix. plus(BinaryMatrix other)
Permet d'ajouter une matrice A à une matrice B.Vector3D
Vector3D. plus(BinaryMatrix other)
Permet d'ajouter un vecteur A à un vecteur B.abstract BinaryMatrix
BinaryMatrix. product(BinaryMatrix other)
Permet d'effectuer un produit matriciel.Matrix
Matrix. product(BinaryMatrix other)
Permet d'effectuer un produit matriciel.Matrix
Vector3D. product(BinaryMatrix other)
Permet d'effectuer un produit matriciel.boolean
BinaryMatrix. verifyDimensions(BinaryMatrix other)
Permet de vérifier que les deux objets ont les mêmes dimensions.