Not able to write the image by reading xcel files generated , getting error of data type as shown in picture attached. Anybody please help.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
0 comentarios
Respuestas (5)
Walter Roberson
el 5 de En. de 2022
You cannot do that. The result of imagesc is an OOP object, and OOP objects cannot be written to excel files.
Perhaps for your purposes it would be good enough to change
z = imagesc(n);
to
z = rescale(n);
0 comentarios
Constantino Carlos Reyes-Aldasoro
el 4 de En. de 2022
This is not very clear, it would be better to copy the code instead of figures and provide a sample file so that the case can be reproduced. However, there is a clear error in the following:
z=imagesc(n);
imwrite(z...)
When you do z=imagesc(n) you are using z as a handle to the image that will be generated with imagesc, for instance:
n=randn(65);
z=imagesc(n);
get(z)
Clearly that is not what you want to save as an excel file.
3 comentarios
Constantino Carlos Reyes-Aldasoro
el 5 de En. de 2022
Back to the same point z is a handle to the image, but if you want to output that as a file (say a png) you do not use imwrite like that, try this
n=randn(65);
z=imagesc(n);
imwrite(n,'testfile.png')
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!