Revision 1dc429fc0da4cc5ff4f62617760447613f85980b authored by vbhandawat on 01 February 2021, 13:54:09 UTC, committed by GitHub on 01 February 2021, 13:54:09 UTC
1 parent 17f20a6
wrapExpAndIdeal.m
function [wrapped_expD, wrapped_idealD] = wrapExpAndIdeal(expD,idealD,flag)
if strcmp(flag,'time')
wrapped_expD=wrapToPi(expD*2*pi)/(2*pi);
wrapped_idealD=wrapToPi(idealD*2*pi)/(2*pi);
else
wrapped_expD=wrapToPi(expD);
wrapped_idealD=wrapToPi(idealD);
end
end

Computing file changes ...