How do I make a gradient for my data

So I have a 3 column set of data. I saved the imported data to my workspace and used the load tool. Now i'm trying to get the gradient and graph it all on a mesh graph. Any idea how I can get the gradient for all my data or even just one column at a time.
M=load('x10meters.mat'); syms x y z f = x10meters; gradient(f, [x,y,z])

3 comentarios

Ethan Koproski
Ethan Koproski el 23 de Abr. de 2018
Also, each column is 690 cells long, if that could help
njj1
njj1 el 23 de Abr. de 2018
What are you computing the gradient with respect to? Typically a gradient is a derivative in a particular direction or directions. Are you just trying to compute a differential? If so, use the diff(f) command.
Ethan Koproski
Ethan Koproski el 23 de Abr. de 2018
This is water column so I eventually want to graph the gradient of biodiversity with respect to depth

Iniciar sesión para comentar.

Respuestas (1)

njj1
njj1 el 24 de Abr. de 2018

0 votos

The gradient function in Matlab takes in two main arguments: the independent variable(s) step size and the data as a function of the independent variable(s). So if you typed [dx,dy,dz] = gradient(F); (where F is your matrix), you would get a numerical gradient of each of the columns in your matrix. In this case, the step size would be assumed as 1, but you can specify it differently if you like, for each column in your matrix.

Categorías

Más información sobre Triangulation Representation en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 23 de Abr. de 2018

Respondida:

el 24 de Abr. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by