Zabc2sc.m
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:

其他行业

开发平台:

Matlab

  1. % This function Obtains the symmetrical components of a 3x3 impedance matrix
  2. % Copyright  (c) 1998 H. Saadat
  3. function [Z012] = zabc2sc(Zabc)
  4. a =cos(2*pi/3)+j*sin(2*pi/3);
  5. A = [1   1   1; 1 a^2  a; 1 a  a^2];
  6. Z012=inv(A)*Zabc*A;