2013-01-21 21:47:54 +08:00
|
|
|
|
function this=AddPDQDPGQG( this, PD,QD,PG,QG)
|
|
|
|
|
|
%ADDPD Summary of this function goes here
|
|
|
|
|
|
% Detailed explanation goes here
|
|
|
|
|
|
if this.currentPos>this.sampleNum
|
|
|
|
|
|
error('<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̫<EFBFBD><EFBFBD><EFBFBD><EFBFBD>');
|
|
|
|
|
|
return;
|
|
|
|
|
|
end
|
|
|
|
|
|
this.currentPos=this.currentPos+1;
|
|
|
|
|
|
this.PDArray(:,this.currentPos)=PD;
|
|
|
|
|
|
this.QDArray(:,this.currentPos)=QD;
|
|
|
|
|
|
this.PGArray(this.currentPos)=PG;
|
2013-01-23 21:27:33 +08:00
|
|
|
|
this.QGArray(this.currentPos)=QG;
|
2013-01-21 21:47:54 +08:00
|
|
|
|
end
|
|
|
|
|
|
|