Nowhere differentiable continuous function: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 7: Line 7:
             var i, s=0.0, n = N.Value(), aa= a.Value(), bb = b.Value();  
             var i, s=0.0, n = N.Value(), aa= a.Value(), bb = b.Value();  
             for (i=0; i<n; i++) {
             for (i=0; i<n; i++) {
                 s += Math.pow(a,i)*Math.cos(Math.pow(b,i)*Math.PI*x);
                 s += Math.pow(aa,i)*Math.cos(Math.pow(bb,i)*Math.PI*x);
             }
             }
console.log(x,i,Math.pow(b,i),Math.PI*x,Math.cos(Math.pow(b,i)*Math.PI*x));
             return s;
             return s;
         };
         };

Revision as of 17:14, 19 September 2011