How to write if condition for a column in a .txt file
2 次查看(过去 30 天)
显示 更早的评论
I have a variable C that generates the last column of a .txt file. I want to only save the data as a .txt file if the C that is being generated is 1. But it is not working with if condition. However without if condition it prints the complete data perfectly.
If (C==1);
result = [A B C];
fid = fopen('XYZ.txt','wt');
fprintf(fid,'Start\n');
for ii = 1:size(result,1)
fprintf(fid,'%g\t',result(ii,:));
fprintf(fid,'\n');
end
fprintf(fid,'End\n');
fclose(fid)
end
2 个评论
Greg
2018-3-22
Did you use a breakpoint to check the value of C, then step to see if it enters the if block? Occasionally, == fails for integers due to floating point round-off.
采纳的回答
Greg
2018-3-22
I think I understand now - you want to downselect each row based on its value of C. We were looking at C as a scalar (clearly not the case now that I look again, you concatenate C with A and B). Do a search for one of the many questions about non-scalar if conditions - they just don't work.
If you only want to print rows of the matrix where column 3 == 1:
blnKeep = logical(C);
result = result(blnKeep,:);
%%%Your working fprintf code here, without the if condition
Then you should probably update your question to call that out more explicitly.
2 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!