.unknown code- understand it up to the for loop but am lost from there. Can anyone lend a hand? thanks.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Josh Williams
el 15 de Mzo. de 2020
Editada: Image Analyst
el 15 de Mzo. de 2020
dat=load('data.dat')
a=dat(:,1)
b=dat(:,2)
s=size(a)
s=s(1)
out=zeros(s,1)
for n=1:s
out(n)=(b(n+1)-b(n-1))/(a(n+1)-a(n-1))
end
c=[a out]
0 comentarios
Respuesta aceptada
Thiago Henrique Gomes Lobato
el 15 de Mzo. de 2020
What the code was supposed to be? it looks like the variable out is suppose to be the numerical derivative of b with respect to a. If the distance between each "a" is uniform and increasing, than this is the central scheme for 1st order differentiation with 2nd order accuracy and the line describe basically
.
.2 comentarios
Thiago Henrique Gomes Lobato
el 15 de Mzo. de 2020
Size returns two values, so s(1) saves the first dimension in order to perform the loop and size assignment. It would be the same if you did:
s=size(a,1);
out=zeros(s,1);
...
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!