8 lines
172 B
Mathematica
8 lines
172 B
Mathematica
|
|
function [ output_args ] = MeanPD(this)
|
||
|
|
%MEANPD Summary of this function goes here
|
||
|
|
% Detailed explanation goes here
|
||
|
|
output_args=sum(this.PDArray,2)/this.sampleNum;
|
||
|
|
|
||
|
|
end
|
||
|
|
|