How to convert image array to double array?
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mr M.
el 18 de Feb. de 2015
Comentada: Stephen23
el 18 de Feb. de 2015
filter.*image is not working, because filter is a double array and image is an integer array. I think MATLAB should convert integer to double by default in this case, but how can I do by hand?
Respuesta aceptada
Viju
el 18 de Feb. de 2015
Take your integer array - let's call it 'intArray' and do the following:
dblArray = double(intArray);
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!