Filter löschen
Filter löschen

Count/find/sum the number of statements to calculate percentage

5 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Wayne King
Wayne King am 17 Apr. 2012
You can always include a counter variable in the loop
k = 0; % outside the loop, set k to 0
if (your real roots test)
fprintf('The equation has no real roots\n');
k = k+1;
end
sum(k)

Weitere Antworten (1)

Andrei Bobrov
Andrei Bobrov am 17 Apr. 2012
eg
ii = 0;
for ...
...
if all(abs(imag(roots) < 100*eps))
fprintf('The equation is good');
ii = ii + 1;
end
...
end

Kategorien

Mehr zu Quadratic Programming and Cone Programming finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by