Live script fprintf temporarily not printing whole line
While doing a bunch of file IO in a Live Script, and printing with fprintf, sometimes the line does not complete printing. Temporarily, it looks like the image below until the next iteration begins.
I was able to sort of recreate the effect with the code below, but what can be only a flicker in the execution of this snippet is much more noticable on my other project.
for i= 1:10
fprintf("Hello %dn",i)
B= inv(rand(3000)+ 2*eye(3000));
end
Is this a bug or am I missing something?While doing a bunch of file IO in a Live Script, and printing with fprintf, sometimes the line does not complete printing. Temporarily, it looks like the image below until the next iteration begins.
I was able to sort of recreate the effect with the code below, but what can be only a flicker in the execution of this snippet is much more noticable on my other project.
for i= 1:10
fprintf("Hello %dn",i)
B= inv(rand(3000)+ 2*eye(3000));
end
Is this a bug or am I missing something? While doing a bunch of file IO in a Live Script, and printing with fprintf, sometimes the line does not complete printing. Temporarily, it looks like the image below until the next iteration begins.
I was able to sort of recreate the effect with the code below, but what can be only a flicker in the execution of this snippet is much more noticable on my other project.
for i= 1:10
fprintf("Hello %dn",i)
B= inv(rand(3000)+ 2*eye(3000));
end
Is this a bug or am I missing something? live, script, fprinf MATLAB Answers — New Questions