8 lines
174 B
Matlab
8 lines
174 B
Matlab
function [ output_args ] = MeanPG( this )
|
|
%MEANPG Summary of this function goes here
|
|
% Detailed explanation goes here
|
|
output_args=sum(this.PGArray,1)/this.sampleNum;
|
|
|
|
end
|
|
|