next up previous contents index
suivant: Extracting element(s) of a monter: Arithmetic and matrix précédent: Hadamard division (infixed version):   Table des matières   Index


Hadamard power (infixed version): .^

.^ takes as arguments a matrix or a list A and a real b.
.^ is an infixed operator that returns the matrix or the list where each term is the corresponding term of A raised to the power b.
Input :
[[1, 2],[3,4]] .^ 2
Output :
[[1,4],[9,16]]



giac documentation written by Renée De Graeve and Bernard Parisse