Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.0.0 - Русский


lcmdiag

least common multiple diagonal factorization

Syntax

[N,D] = lcmdiag(H)
[N,D] = lcmdiag(H, 'row')
[N,D] = lcmdiag(H, 'col')

Arguments

H

rational matrix

N

polynomial matrix

D

diagonal polynomial matrix

'row'|'col'

character string: Default is 'col'.

Description

[N,D]=lcmdiag(H,'row') computes a factorization D*H=N, i.e. H=D^(-1)*N where D is a diagonal matrix with D(k,k)=lcm of kth row of H('den').

[N,D]=lcmdiag(H) or [N,D]=lcmdiag(H,'col) returns H=N*D^(-1) with diagonal D and D(k,k)=lcm of kth col of H('den')

Examples

s = poly(0,'s');
H = [1/s,(s+2)/s/(s+1)^2;1/(s^2*(s+2)),2/(s+2)];
[N,D] = lcmdiag(H);
N/D - H

See also

  • lcm — наименьшее общее кратное (положительное) целых чисел или полиномов
  • gcd — Greatest (positive) Common Divisor
  • bezout — GCD of two polynomials or two integers, by the Bezout method
Report an issue
<< invr Polynomials ldiv >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Mar 07 09:28:44 CET 2023