Count/find/sum the number of statements to calculate percentage
Show older comments
Hi,
Using a loop to solve several quadratic equations, my script calculates tells me whether 'The equation is good' or 'The equation has no real roots'.
These statements are printed using fprintf. In the form:
The equation is good
The equation is good
The equation has no real roots
The equation is good...etc
Is there an easy way to calculate how many times 'The equation is good' is printed?
I've tried to use sum(fprintf== 'The equation has no real roots') but it doesn't seem to work.
Thanks
Accepted Answer
More Answers (1)
Andrei Bobrov
on 17 Apr 2012
eg
ii = 0;
for ...
...
if all(abs(imag(roots) < 100*eps))
fprintf('The equation is good');
ii = ii + 1;
end
...
end
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!