How can I fix my function?
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
michael story
el 29 de Oct. de 2018
Editada: michael story
el 29 de Oct. de 2018
function numReplaced=replaceMultiples(fname,num)
clc
num=0
fname='example.txt';
ifn=fname;
ofn=['updated%d %s',num,fname];
ifh=fopen(ifn,'r'); % open the file for reading
ofh=fopen(ofn,'wt'); %open the output file for writing
ln=fgetl(ifh); % try to get the first line of the file
while str2num(fname)
while ~isnan(num)
[tk,ln]=strtok(ln);
if mod(fname,num)==0
fprintf(ofh,'%s ',tk); %write to output file
end
end
fprintf(ofh,'\n'); %after the complete line has
ln=fgetl(ifh);
end
fclose(ifh); % close the file
fclose(ofh);
0 comentarios
Respuesta aceptada
Walter Roberson
el 29 de Oct. de 2018
Do not assign to fname or num in your code.
str2double(fname) is attempting to interpret the file name itself as a number.
Your code is converting file contents into tokens but it then tries to take modulo on the file name itself instead of examining the content it tokenized.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Filename Construction en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!