8 lines
173 B
Matlab
8 lines
173 B
Matlab
function [ output_args ] = MeanQG( this )
|
|
%MEAQG Summary of this function goes here
|
|
% Detailed explanation goes here
|
|
output_args=sum(this.QGArray,1)/this.sampleNum;
|
|
|
|
end
|
|
|