Array programming: Difference between revisions

Content deleted Content added
Languages: Mention Futhark
Tags: Mobile edit Mobile web edit
Line 193:
 
a * b;
 
By contrast, the [[entrywise product]] is implemented as:
 
a .* b;
 
The inner product between two matrices having the same number of elements can be implemented with the auxiliary operator <code>(:)</code>, which reshapes a given matrix into a column vector, and the [[transpose]] operator <code>'</code>: