Filter löschen
Filter löschen

phase calculation and plot

1 Ansicht (letzte 30 Tage)
aditi
aditi am 12 Jul. 2013
can anyone please help me understand this function...m new to matlab
function y=folding(x,p,c);
if nargin==2,
c=1;
elseif nargin==3,
% do nothing
else
error('Illegal number of input arguments');
end
jd_col = length(x(1,:)) + 1;
y = zeros(length(x(:,1)),jd_col);
TEMP = x(:,c);
r = TEMP;
TEMP = TEMP./p-floor(TEMP./p);
y = x;
y(:,c:c) = TEMP;
y(:,jd_col) = r;
y = sortrows(y,c);

Antworten (0)

Kategorien

Mehr zu Modeling finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by