- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
一般来说,我想计算复方 (NxN) 矩阵的逆矩阵。
F.ex 我有一个 5x5 矩阵:
Ybus = [
6.2500 -18.6950i, -5.0000 +15.0000i, -1.2500 + 3.7500i, 0, 0 ;
-5.0000 +15.0000i, 10.8333 -32.4150i, -1.6667 + 5.0000i, -1.6667 + 5.0000i, -2.5000 + 7.5000i;
-1.2500 + 3.7500i, -1.6667 + 5.0000i, 12.9167 -38.6950i, -10.0000 +30.0000i, 0;
0, -1.6667 + 5.0000i, -10.0000+30.0000i, 12.9167 -38.6950i, -1.2500 + 3.7500i;
0, -2.5000 + 7.5000i, 0, -1.2500 + 3.7500i, 3.7500 -11.2100i;
]
如何使用 Delphi 计算该矩阵的逆矩阵 (Zbus = inverse (Ybus))?
最佳答案
存在 Matrix libray for Delphi由 Nikolai Shokhirev 先生(GNU2 许可)编写。它不是一个完整的库,而是一个很好的起点。除此之外,它仅能够计算实值矩阵的逆矩阵。但是有一种方法可以使用实值矩阵来计算复矩阵的逆:
根据this Matlab ressource ,给定复方矩阵 M = A + iB,其逆也是复方矩阵 Z = X + iY,其中 A、B 和 X、Y 均为实矩阵。发现 M^-1 = Z 或(A + iB)^-1 = (A + BA^-1*B)^-1 - i*(B + A*B^-1*A)^-1前提是涉及求逆的矩阵必须是非奇异的。
以下代码使用矩阵库和Matlab引用来求复数Ybus矩阵的逆,也可以一般用于求复数NxN矩阵的逆:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, DateUtils,
// from matrix library
// http://www.shokhirev.com/nikolai/programs/tools/PasMatLib/download.html
uDynObjAlg,
uDynArrays,
uMatTypes;
type
TForm1 = class(TForm)
Memo1: TMemo;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
// extra matrix utils:
function CMat2Str(AMatrix: ICArr2D): String;
var
row : Integer;
col : Integer;
begin
Result := '';
for row := 1 to AMatrix.Dim1 do
begin
for col := 1 to AMatrix.Dim2 do
begin
Result := Result + CmplxToStr0(AMatrix[row, col], 10, 3) + ' ';
end;
Result := Result +#13#10;
end;
Result := Result;
end;
function Mat2Str(AMatrix: IFArr2D): String;
var
row : Integer;
col : Integer;
s : string;
begin
Result := '';
for row := 1 to AMatrix.Dim1 do
begin
for col := 1 to AMatrix.Dim2 do
begin
Str(AMatrix[row, col]:10:3,s);
Result := Result + s + ' ';
end;
Result := Result + ';'+#13#10;
end;
end;
function MtAddMt(const M1: IFArr2D; const M2: IFArr2D): IFArr2D;
var
row: TInt;
col : TInt;
t: IFArr2D;
begin
if (M1.Lo1<>M2.Lo1) or ( M1.Hi1<>M1.Hi1) or (M1.Lo2<>M2.Lo2) or ( M1.Hi2<>M1.Hi2) then
Raise ERangeError.Create(RS_LimMismatch);
t := TFArr2D.Create(M1,true);
for row := t.Lo1 to t.Hi1 do
for col := t.Lo2 to t.Hi2 do
t[row,col] := t[row,col] + M2[row, col];
result := t;
end;
procedure TForm1.FormCreate(Sender: TObject);
const
cInversionCount = 1000;
var
YBus : ICArr2D;
ZBus : ICArr2D;
YBusRe: IFArr2D;
YBusIm: IFArr2D;
YBusReInv : IFArr2D;
YBusImInv : IFArr2D;
row, col : Integer;
ZBusRe : IFArr2D;
ZBusIm : IFArr2D;
timeStart: TDateTime;
timeStop : TDateTime;
n : Integer;
begin
YBus := TCArr2D.Create(1,5, 1,5);
// fill matrix:
// row 1:
// 6.2500 -18.6950i, -5.0000 +15.0000i, -1.2500 + 3.7500i, 0, 0 ;
YBus.Value[1,1] := cmplx( 6.2500, -18.6950 );
YBus.Value[1,2] := cmplx( -5.0000, 15.0000 );
YBus.Value[1,3] := cmplx( -1.2500, 3.7500 );
YBus.Value[1,4] := cmplx( 0, 0 );
YBus.Value[1,5] := cmplx( 0, 0 );
// row 2:
// -5.0000 +15.0000i, 10.8333 -32.4150i, -1.6667 + 5.0000i, -1.6667 + 5.0000i, -2.5000 + 7.5000i;
YBus.Value[2,1] := cmplx( -5.0000, 15.0000 );
YBus.Value[2,2] := cmplx( 10.8333, -32.4150 );
YBus.Value[2,3] := cmplx( -1.6667, 5.0000 );
YBus.Value[2,4] := cmplx( -1.6667, 5.0000 );
YBus.Value[2,5] := cmplx( -2.5000, 7.5000 );
// row 3:
// -1.2500 + 3.7500i, -1.6667 + 5.0000i, 12.9167 -38.6950i, -10.0000 +30.0000i, 0;
YBus.Value[3,1] := cmplx( -1.2500, 3.7500 );
YBus.Value[3,2] := cmplx( -1.6667, 5.0000 );
YBus.Value[3,3] := cmplx( 12.9167, -38.6950 );
YBus.Value[3,4] := cmplx( -10.0000, 30.0000 );
YBus.Value[3,5] := cmplx( 0, 0 );
// row 4:
// 0, -1.6667 + 5.0000i, -10.0000 +30.0000i, 12.9167 -38.6950i, -1.2500 + 3.7500i;
YBus.Value[4,1] := cmplx( 0, 0 );
YBus.Value[4,2] := cmplx( -1.6667, 5.0000 );
YBus.Value[4,3] := cmplx( -10.0000, 30.0000 );
YBus.Value[4,4] := cmplx( 12.9167, -38.6950 );
YBus.Value[4,5] := cmplx( -1.2500, 3.7500 );
// row 5:
// 0, -2.5000 + 7.5000i, 0, -1.2500 + 3.7500i, 3.7500 -11.2100i
YBus.Value[5,1] := cmplx( 0, 0 );
YBus.Value[5,2] := cmplx( -2.5000, 7.5000 );
YBus.Value[5,3] := cmplx( 0, 0 );
YBus.Value[5,4] := cmplx( -1.2500, 3.7500 );
YBus.Value[5,5] := cmplx( 3.7500, -11.2100 );
// compute inverse of complex matrix using relation:
// http://www.mathworks.com/matlabcentral/fileexchange/49373-complex-matrix-inversion-by-real-matrix-inversion
// Given a complex square matrix M = A + i*B,
// its inverse is also a complex square matrix Z = X + i*Y,
// where A, B and X, Y are all real matrices. It is found that
// M^-1 = Z or
// (A + i*B)^-1 = (A + B*A^-1*B)^-1 - i*(B + A*B^-1*A)^-1
// Provided that those matrices involved inversion must be nonsingular.
// with performance profiling:
timeStart := now;
for n := 1 to cInversionCount do
begin
// Create real part matrix:
YBusRe := TFArr2D.Create( YBus.Lo1, YBus.Hi1, YBus.Lo2, YBus.Hi2);
for row := 1 to YBus.Dim1 do
begin
for col := 1 to YBus.Dim2 do
begin
YBusRe[row, col] := YBus[row, col].Re;
end;
end;
// Create imaginary part matrix:
YBusIm := TFArr2D.Create( YBus.Lo1, YBus.Hi1, YBus.Lo2, YBus.Hi2);
for row := 1 to YBus.Dim1 do
begin
for col := 1 to YBus.Dim2 do
begin
YBusIm[row, col] := YBus[row, col].Im;
end;
end;
// compute inverse of real matrices:
YBusReInv := PseudoinverseMt( YBusRe );
YBusImInv := PseudoinverseMt( YBusIm );
// compute:
// (A + B*A^-1*B)^-1 - i*(B + A*B^-1*A)^-1
ZBusRe := PseudoinverseMt( MtAddMt( YBusRe, MtxMt( MtxMt(YBusIm, YBusReInv ), YBusIm ) ) );
ZBusIm := PseudoinverseMt( MtAddMt( YBusIm, MtxMt( MtxMt( YBusRe, YBusImInv ), YBusRe ) ) );
// and finally combine to inverse complex matrix:
ZBus := TCArr2D.Create( YBus, False );
for row := 1 to ZBus.Dim1 do
begin
for col := 1 to ZBus.Dim2 do
begin
ZBus[row, col] := cmplx( ZBusRe[row, col], -ZBusIm[row, col] );
end;
end;
end;
timeStop := now;
// print results:
Memo1.Text := 'YBus = ' + #13#10 + CMat2Str( YBus ) + #13#10+
'YBusRe = ' + #13#10 + Mat2Str( YBusRe ) + #13#10 +
'YBusReInv = ' + #13#10 + Mat2Str( YBusReInv ) + #13#10 +
'Verify inverse, I = YBusRe x YBusReInv =' + #13#10 + Mat2Str( MtxMt(YBusRe, YBusReInv ) ) + #13#10 +
'YBusIm = ' + #13#10 + Mat2Str( YBusIm ) + #13#10 +
'YBusImInv = ' + #13#10 + Mat2Str( YBusImInv ) + #13#10 +
'Verify inverse, I = YBusIm x YBusImInv =' + #13#10 + Mat2Str( MtxMt(YBusIm, YBusImInv ) ) + #13#10 +
'ZBus = ' + #13#10+ CMat2Str( ZBus ) + #13#10+
'Verify ZBus, I = YBus x ZBus = ' + #13#10+ CMat2Str( CMtxCMt( YBus, ZBus ) ) + #13#10 +
'Performance: ' + FormatFloat('0.00', MilliSecondsBetween(timeStop, timeStart ) / cInversionCount) + ' ms for 1 inversion. Or ' +
IntToStr( Round( 1000 / (MilliSecondsBetween(timeStop, timeStart)/cInversionCount))) + ' inversions per second. (Intel i7-4790 CPU @ 3.60GHz)';
end;
end.
关于delphi - delphi中复数(NxN)矩阵的逆矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33468188/
假设我有两个矩阵,每个矩阵有两列和不同的行数。我想检查并查看一个矩阵的哪些对在另一个矩阵中。如果这些是一维的,我通常只会做 a %in% x得到我的结果。 match似乎只适用于向量。 > a
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 9 个月前。 Improv
我只处理过 DirectX 矩阵 我读过一些文章,说不能将 DirectX 矩阵数学库用于 openGL 矩阵。 但我也读过,如果你的数学是一致的,你可以获得类似的结果。那只会让我更加困惑。 任何人都
我编写了一个C++代码来解决线性系统A.x = b,其中A是一个对称矩阵,方法是首先使用LAPACK(E)对角矩阵A = V.D.V^T(因为以后需要特征值),然后求解x = A^-1.b = V^T
我遇到了问题。我想创建二维数组 rows=3 cols=2我的代码如下 int **ptr; int row=3; int col=2; ptr=new int *[col]; for (int i=
我有一个 3d mxnxt 矩阵,我希望能够提取 t 2d nxm 矩阵。在我的例子中,我有一个 1024x1024x10 矩阵,我想要 10 张图像显示给我。 这不是 reshape ,我每次只需要
我在 MATLAB 中有一个 3d 矩阵 (n-by-m-by-t) 表示一段时间内网格中的 n-by-m 测量值.我想要一个二维矩阵,其中空间信息消失了,只剩下 n*m 随着时间 t 的测量值(即:
作为一个简化的示例,我有一个 3D numpy 矩阵,如下所示: a = np.array([[[1,2], [4,np.nan], [7,
作为一个简化的示例,我有一个 3D numpy 矩阵,如下所示: a = np.array([[[1,2], [4,np.nan], [7,
使用 eigen2 , 并给定一个矩阵 A a_0_0, a_0_1, a_0_2, ... a_1_0, a_1_0, a_1_2, ... ... 和一个矩阵B: b_0_0, b_0_1, b_
我想知道如何获得下面的布局。 在中型和大型设备上,我希望有 2 行和 2 列的布局(2 x 2 矩阵)。 在小型(和超小型)设备上或调整为小型设备时,我想要一个 4 行和 1 列的矩阵。 我将通过 a
有什么方法可以向量化以下内容: for i = 1:6 te = k(:,:,:,i).*(c(i)); end 我正在尝试将 4D 矩阵 k 乘以向量 c,方法是将其
如何从填充有 1 和 0 的矩阵中抽取 n 个随机点的样本? a=rep(0:1,5) b=rep(0,10) c=rep(1,10) dataset=matrix(cbind(a,b,c),nrow
我正在尝试创建一个包含 X 个 X 的矩阵。以下代码生成从左上角到右下角的 X 对 Angular 线,而不是从右上角到左下角的 X 对 Angular 线。我不确定从哪里开始。是否应该使用新变量创建
我想在 python 中创建一个每行三列的矩阵,并能够通过任何一行对它们进行索引。矩阵中的每个值都是唯一的。 据我所知,我可以设置如下矩阵: matrix = [["username", "name"
我有点迷茫 我创建了一个名为 person 的类,它具有 age 和 name 属性(以及 get set 方法)。然后在另一个类中,我想创建一个 persons 数组,其中每个人都有不同的年龄和姓名
我有 n 个类,它们要么堆叠,要么不堆叠。所有这些类都扩展了同一个类 (CellObject)。我知道更多类将添加到此列表中,我想创建一种易于在一个地方操纵“可堆叠性”的方法。 我正在考虑创建一个矩阵
我有一个包含 x 个字符串名称及其关联 ID 的文件。本质上是两列数据。 我想要的是一个格式为 x x x 的相关样式表(将相关数据同时作为 x 轴和 y 轴),但我想要 fuzzywuzzy 库的函
机器学习与传统编程的一个重要区别在于机器学习比传统编程涉及了更多的数学知识。不过,随着机器学习的飞速发展,各种框架应运而生,在数据分析等应用中使用机器学习时,使用现成的库和框架成为常态,似乎越来越不需
当我在 julia 中输入这个错误跳转但我不知道为什么,它应该工作。/ julia> A = [1 2 3 4; 5 6 7 8; 1 2 3 4; 5 6 7 8] 4×4 Array{Int64,
我是一名优秀的程序员,十分优秀!