Scilab 6.0.1
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
lcm
mínimo múltiplo comum
Seqüência de Chamamento
pp = lcm(p) [pp, fact] = lcm(p)
Parâmetros
- p
vetor de polinômios
- fact
vetor de polinômios ou inteiros (tipo igual a 8)
- pp
polinômio ou inteiro
Descrição
pp=lcm(p) computa o MMC pp do
vetor de polinômios p.
[pp,fact]=lcm(p) computa, ainda, o vetor
fact tal que p.*fact=pp*ones(p)
If p is a set of integers with some negative ones, the returned value
pp of their LCM is always positive.
If p is an array of decimal integers, they are priorly converted
into int32 before processing.
Exemplos
Histórico
| Version | Description |
| 6.0.1 | For input integers possibly negative, the returned LCM is now always positive. |
| Report an issue | ||
| << gcd | Matemática discreta | perms >> |