.Modelica_LinearSystems2.WorkInProgress.Math.LAPACK.zgesvd

Information

Determine singular values of a complex matrix

Interface

function zgesvd
  import Complex;
  input Complex A[:, :] "Square or rectangular matrix";
  output Real sigma[min(size(A, 1), size(A, 2))] "singular values";
  output Complex U[size(A, 1), size(A, 1)] "Left orthogonal matrix";
  output Complex VT[size(A, 2), size(A, 2)] "Transposed right orthogonal matrix";
  output Integer info;
end zgesvd;

Generated at 2024-11-23T19:25:52Z by OpenModelicaOpenModelica 1.24.2 using GenerateDoc.mos