Anul 3 Semestrul 2
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
function t = backdiff(f)
|
||||
n = length(f);
|
||||
t = zeros(n);
|
||||
t(:,1)= f'
|
||||
for j = 2:n
|
||||
t(j:n,j) = diff(t(j-1:n,j-1));
|
||||
endfor
|
||||
end;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user