New line after fprintf in a for/ while loop
9 次查看(过去 30 天)
显示 更早的评论
I have an if else statement in a for loop that displays a relative error if the iterations is between a certain number. The only problem is that i can not seem to add a \n at the end of the fprint if because it ends up freaking out. Is there a way to add a linespace for this fprintf within an if else statement without having this error? Thanks
1 个评论
Les Beckham
2023-8-28
If you provide your code (or a simplified version of it that still exhibits the problem) along with any data needed to allow it to run successfully, you will be much more likely to get an answer.
What do you mean by "it ends up freaking out"? Is there an error message? If so, cut and paste the entire error message (all of the red text in the command window) in a comment (or edit your question).
采纳的回答
David Hill
2023-8-28
a=randi(100,1,100);
for k=1:100
formatSpec = 'a is %2g\n';
if a(k)>90
fprintf(formatSpec,a(k));
end
end
0 个评论
更多回答(2 个)
dpb
2023-8-28
编辑:dpb
2023-8-28
Certainly the if...else...end clause itself has absolutely nothing to do with handling a newline in an fprint formatting string.
To illustrate proper syntax we can make up just a dummy test...
V=rand(10,1)
for i=2:numel(V)
if V(i)-V(i-1)>0
fprintf('Iteration: %d GT 0\n',i)
else
fprintf('Iteration: %d LE 0\n',i)
end
end
0 个评论
Image Analyst
2023-8-28
Let's say you loop over val1 to val2, and you want to only enter the loop if val1 is more than 5 and val2 is less than 80. One way to do it would be to check in advance and never enter the for loop:
if (val1 <= 5) || (val2 > 80)
warningMessage = sprintf('For loop iterators out of range.\nValid range is 5-80.\nNow it is trying %d to %d', val1, val2)
uiwait(errordlg(warningMessage))
return; % Quit routine.
end
for k = val1 : val2
% code to run if the values are in range.
end
Another way to do it is to check inside the loop and break out
for k = 1 : 999
if (k <= 5) || (k > 80)
warningMessage = sprintf('For loop iterators out of range.\nValid range is 5-80.\nNow it is trying %d.', k)
uiwait(errordlg(warningMessage))
break; % Quit for loop, or use continue to continue with the next k.
end
end
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!