projects
/
scilab.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
Graphics macros & demos: replace gcf with scf
[scilab.git]
/
scilab
/
modules
/
graphics
/
macros
/
polarplot.sci
diff --git
a/scilab/modules/graphics/macros/polarplot.sci
b/scilab/modules/graphics/macros/polarplot.sci
index
74330c1
..
5886bb6
100644
(file)
--- a/
scilab/modules/graphics/macros/polarplot.sci
+++ b/
scilab/modules/graphics/macros/polarplot.sci
@@
-12,7
+12,7
@@
function polarplot(theta,rho,style,strf,leg,rect)
if rhs<=0 then
theta=0:.01:2*%pi;
rho=sin(2*theta).*cos(2*theta)
- clf();
+ scf();
polarplot(theta,rho)
return
end