how to implement these equations in Matlab?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have the following equations
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/369538/image.jpeg)
where
and
represent the first-order derivative of matrix I . I tried to implement these equations in matlab using the following lines:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/369541/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/369544/image.jpeg)
fx = diff(I,1,2);
fx = padarray(fx, [0 1 0], 'post');
fy = diff(I,1,1);
fy = padarray(fy, [1 0 0], 'post');
Gx = -log10(fx);
Gy = -log10(fy);
however, the value of Gx and Gy are complex numbers which means that these equations don't implemented correctely. does anyone know how to implement these equations correctely in matlab? any help will be appreciated.
5 comentarios
John D'Errico
el 2 de Oct. de 2020
natural log vs log10 is irrelevant. If one gives complex, than so will the other.
The log of a negative number is complex. Taken to ANY base.
Respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!