Error using fopen
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I'm using the following command in a for-loop:
imwrite(x,strcat('L_',num2str(c),'_m.bmp'),'bmp');
And, getting the following error:
Error using fopen
File name must be a vector of type char.
Error in imwrite (line 453)
fid = fopen(filename, 'a');
Error in fuzzycmeans (line 83)
imwrite(x,strcat('L_',num2str(c),'_m.bmp'),'bmp');
Why is that? How can I fix this issue?
Thanks.
0 comentarios
Respuestas (1)
Star Strider
el 25 de Ag. de 2014
As a troubleshooting step, run this line:
flnm = strcat('L_',num2str(c),'_m.bmp')
just before your imwrite call and see what the result is.
2 comentarios
Star Strider
el 27 de Ag. de 2014
What does ‘flnm’ produce? Is it ‘a vector of type char’?
If you do:
cn = class(flnm)
what is the result?
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!