Zabc2sc.m
资源名称:power.rar [点击查看]
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:
其他行业
开发平台:
Matlab
- % This function Obtains the symmetrical components of a 3x3 impedance matrix
- % Copyright (c) 1998 H. Saadat
- function [Z012] = zabc2sc(Zabc)
- a =cos(2*pi/3)+j*sin(2*pi/3);
- A = [1 1 1; 1 a^2 a; 1 a a^2];
- Z012=inv(A)*Zabc*A;