Description Usage Arguments Value Examples
Change the value of an object on the search path through matrix multiplication. Similar to '*=' in
other languages, except with matrix multiplication. See incr for details on implementation.
1  | x %.*=% value
 | 
x | 
 object to be modified; can be a symbol, character, or extraction language object.  | 
value | 
 value with which to change   | 
the new value of x, invisibly
1 2 3  | x <- 1:5
x %*=% 6:10
identical(x, 130)  # TRUE
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.