Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

why matlab shows code while use fprintf

1 vue (au cours des 30 derniers jours)
ZhG
ZhG le 30 Mai 2013
Clôturé : MATLAB Answer Bot le 20 Août 2021
As you found it, this is a simple code to check if the file exsits. But as soon as I execute it, it not only outputs the existed file names but also shows a part of my code, as below.
clear all;
clc;
close all;
for i=1:10
for j=1:8
str1 = num2str(100+i);
str2 = num2str(i+j-1);
str = strcat(str1, '_', str2, '.', 'tif');
if(exist(str,'file')~=0)
fprintf('%s',str);
end
end
end
Result like this:
103_3.tif str1 = num2str(100+i);
str2 = num2str(i+j-1);
str = strcat(str1, '_', str2, '.', 'tif');
if(exist(str,'file')~=0)
fprintf('%s',str);
103_4.tif str1 = num2str(100+i);
str2 = num2str(i+j-1);
str = strcat(str1, '_', str2, '.', 'tif');
if(exist(str,'file')~=0)
str1 = num2str(100+i);
str2 = num2str(i+j-1);
str = strcat(str1, '_', str2, '.', 'tif');
if(exist(str,'file')~=0)
  2 commentaires
David Sanchez
David Sanchez le 30 Mai 2013
I tested your code as is and I just had the file name. Obviously there is something wrong with your machine.
Walter Roberson
Walter Roberson le 30 Mai 2013
Could you also, for debugging purposes, show length(str) after str is constructed ?

Réponses (0)

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by