1 function [isEqual,reportStr]=
structcompare(SX,SY,absTol,relTol)
11 if ~isequal(size(SX),size(SY))
13 reportStr={
'sizes are different'};
17 isEqual=all(isEqualVec);
function structcompare(in SX, in SY, in absTol, in relTol)
STRUCTCOMPARE compares two structures using the specified tolerance.
function structcomparevec(in SX, in SY, in absTol, in relTol)
STRUCTCOMPARE compares two structures using the specified tolerance.