How Gradient is calcuted
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
In matlab i have found following answers. let X =
1 2 3
3 4 5
3 2 1
z=gradient(X)
z =
1 1 1
1 1 1
-1 -1 -1
[z,c]=gradient(X)
z =
1 1 1
1 1 1
-1 -1 -1
c =
2 2 2
1 0 -1
0 -2 -4
But how z and c is calculated,what z and c indicates.
0 commentaires
Réponse acceptée
Sven
le 17 Fév 2013
Modifié(e) : Sven
le 17 Fév 2013
Hi Tinkul,
It is probably clearer if you call your variables z and c different names such as dx and dy. This is because the first and second outputs from gradient is the gradient in each of those directions.
So if you have:
M =
1 2 3
3 4 5
3 2 1
[dx,dy]=gradient(M)
dx =
1 1 1
1 1 1
-1 -1 -1
dy =
2 2 2
1 0 -1
0 -2 -4
You'll notice that dx(1,:) is almost the same as diff(M(1,:)), and dy(:,1) is almost the same as diff(M(:,1)). The main difference is that gradient replicates the last result so that the output has the same size as the input.
Update: this is not quite correct. The two-sided gradient is used in gradient... the one-sided gradient is used in diff.
Does that help? You can also check out the help for gradient which says even more.
4 commentaires
Shashank Prasanna
le 17 Fév 2013
Quick note, doc gradient is generally more updated than help gradient or even better is the web documentation search. just an fyi.
Jan
le 17 Fév 2013
The web documentation concerns the newest release only. For the locally installed version, the local help is more accurate, when there have been changes.
Plus de réponses (1)
Jan
le 17 Fév 2013
Beside help gradient you can read the source code also: edit gradient. There you find, that at the edges the single sided difference quotient is calculated - demonstrated on a vector at first:
dx(1) = (x(2) - x(1)) / h;
dx(3) = (x(3) - x(2)) / h;
while h==1 as default. In the inner points the 2nd order two sided difference quotient is created:
dx(2) = (x(3) - x(1)) / (2*h);
For a matrix input the two out puts are calculated a long the rows and the columns respectively.
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!