フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

why matlab shows code while use fprintf

1 回表示 (過去 30 日間)
ZhG
ZhG 2013 年 5 月 30 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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 件のコメント
David Sanchez
David Sanchez 2013 年 5 月 30 日
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 2013 年 5 月 30 日
Could you also, for debugging purposes, show length(str) after str is constructed ?

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by