Member of the basic class.
c = lcm(a, b)
Computes the pairwise least common multiple of the input elements.
| Name | Description |
| a | Specifies a scalar or matrix. All elements of a must be positive integers. |
| b | Specifies a scalar or matrix. All elements of b must be positive integers. |
| Name | Description |
| c | Returns the pairwise least common multiple of the elements in a and b. c is a matrix of the same size as the larger of a and b. |
A = 234
B = 98
C = lcm(A, B)