Hello,
is there anybody who knows how to change the matlab included diff() function to the following form:
own diff() function: Y= X2 - X1.....Xn+1-Xn
I just have created an m File where I do this manually seperate from diff() like:
for(c=1:1:length(x)-1)
Y(c)=[(x(c)-x(c+1))];
end
The...