Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How to solve the equation?

1 visualización (últimos 30 días)
Darsana P M
Darsana P M el 16 de Abr. de 2018
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I have the following code to do fft();
d='cameraman.png';
F=fft2(d);
Fsh=fftshift(F);
s2=log(1+abs(Fsh));
In the fourth step, I wanted to get the value of Fsh, What should be the format to find this in matlab.
I tried doing this operation:
Fsh=round(exp(s2))-1
Can somebody help me with the right format to do this equation in matlab?
  2 comentarios
Walter Roberson
Walter Roberson el 16 de Abr. de 2018
You cannot take the fft of a character string.
Have you considered reading in the file named by the character string?
Shounak Shastri
Shounak Shastri el 16 de Abr. de 2018
Use 'imread()'to read the file.
But if you want to find the fft of the string, then convert it to integer or double before taking the fft.

Respuestas (0)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by